ReplyToEmailOptions constructor

ReplyToEmailOptions({
  1. required String body,
  2. required bool isHTML,
  3. String? from,
  4. String? replyTo,
  5. String? charset,
  6. List<String>? attachments = const [],
  7. Map<String, Object>? templateVariables = const {},
  8. String? template,
  9. ReplyToEmailOptionsSendStrategyEnum? sendStrategy,
  10. bool? useInboxName,
  11. bool? html,
})

Returns a new ReplyToEmailOptions instance.

Implementation

ReplyToEmailOptions({
  required this.body,
  required this.isHTML,
  this.from,
  this.replyTo,
  this.charset,
  this.attachments = const [],
  this.templateVariables = const {},
  this.template,
  this.sendStrategy,
  this.useInboxName,
  this.html,
});