Skip to content

Commit ea17e98

Browse files
committed
Support reply-to in 'email-send' admin action.
1 parent 915acba commit ea17e98

File tree

4 files changed

+11
-1
lines changed

4 files changed

+11
-1
lines changed

app/lib/admin/actions/email_send.dart

+4
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ The list of resolved emails will be deduplicated.
3838
'from': 'The email address to impersonate (`[email protected]` by default).',
3939
'subject': 'The subject of the email message.',
4040
'body': 'The text content of the email body.',
41+
'reply-to':
42+
'(optional) A comma separated list of email addresses to be used in the Reply-To header.',
4143
'in-reply-to':
4244
'(optional) The local message id of the email that this is a reply to '
4345
'(e.g. moderation case id). The email sender will the `In-Reply-To` and `References` '
@@ -65,6 +67,7 @@ The list of resolved emails will be deduplicated.
6567
);
6668
final cc = options['cc'];
6769
final inReplyTo = options['in-reply-to'];
70+
final replyTo = options['reply-to'];
6871

6972
final emailList = await _resolveEmails(to!);
7073
final ccEmailList = cc == null ? null : await _resolveEmails(cc);
@@ -79,6 +82,7 @@ The list of resolved emails will be deduplicated.
7982
ccRecipients:
8083
ccEmailList?.map((v) => EmailAddress(v)).toList() ?? const [],
8184
inReplyToLocalMessageId: inReplyTo,
85+
replyTos: replyTo?.split(',') ?? const <String>[],
8286
));
8387
return {
8488
'emails': emailList,

app/lib/service/email/email_sender.dart

+1
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,7 @@ Message _toMessage(EmailMessage input) {
176176
'Message-ID': '<${input.localMessageId}@pub.dev>',
177177
if (inReplyToMessageId != null) 'In-Reply-To': inReplyToMessageId,
178178
if (inReplyToMessageId != null) 'References': inReplyToMessageId,
179+
if (input.replyTos.isNotEmpty) 'Reply-To': input.replyTos.join(','),
179180
};
180181
return Message()
181182
..headers = headers

app/lib/service/email/email_templates.dart

+3
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ class EmailMessage {
120120
final List<EmailAddress> ccRecipients;
121121
final String subject;
122122
final String bodyText;
123+
final List<String> replyTos;
123124

124125
EmailMessage(
125126
this.from,
@@ -129,6 +130,7 @@ class EmailMessage {
129130
this.inReplyToLocalMessageId,
130131
this.localMessageId,
131132
this.ccRecipients = const <EmailAddress>[],
133+
this.replyTos = const <String>[],
132134
}) : bodyText = reflowBodyText(bodyText);
133135

134136
/// Throws [ArgumentError] if the [localMessageId] or the
@@ -157,6 +159,7 @@ class EmailMessage {
157159
'ccRecipients': ccRecipients.map((e) => e.email).toList(),
158160
'subject': subject,
159161
'bodyText': bodyText,
162+
if (replyTos.isNotEmpty) 'replyTos': replyTos,
160163
};
161164
}
162165

app/test/admin/email_send_test.dart

+3-1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ void main() {
4343
'to': 'package:oxygen',
4444
'subject': 'Test email',
4545
'body': 'Test body',
46+
4647
}),
4748
);
4849
expect(rs1.output, {
@@ -57,7 +58,8 @@ void main() {
5758
'recipients': ['[email protected]'],
5859
'ccRecipients': [],
5960
'subject': 'Test email',
60-
'bodyText': 'Test body'
61+
'bodyText': 'Test body',
62+
6163
});
6264
});
6365
});

0 commit comments

Comments
 (0)