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 742384d commit e80e3b4Copy full SHA for e80e3b4
lib/src/email_client.dart
@@ -20,6 +20,7 @@ abstract class EmailClient {
20
///
21
/// - [senderEmail]: The email address of the sender.
22
/// - [recipientEmail]: The email address of the recipient.
23
+ /// - [subject]: The subject line of the email.
24
/// - [templateId]: The unique identifier for the dynamic template stored in
25
/// the email service provider.
26
/// - [templateData]: A map of dynamic data to be merged into the template.
@@ -33,6 +34,7 @@ abstract class EmailClient {
33
34
Future<void> sendTransactionalEmail({
35
required String senderEmail,
36
required String recipientEmail,
37
+ required String subject,
38
required String templateId,
39
required Map<String, dynamic> templateData,
40
});
0 commit comments