We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ada0ec5 commit c65e11bCopy full SHA for c65e11b
lib/src/email_sendgrid.dart
@@ -32,6 +32,7 @@ class EmailSendGrid implements EmailClient {
32
Future<void> sendTransactionalEmail({
33
required String senderEmail,
34
required String recipientEmail,
35
+ required String subject,
36
required String templateId,
37
required Map<String, dynamic> templateData,
38
}) async {
@@ -46,6 +47,7 @@ class EmailSendGrid implements EmailClient {
46
47
'to': [
48
{'email': recipientEmail},
49
],
50
+ 'subject': subject,
51
'dynamic_template_data': templateData,
52
},
53
0 commit comments