SendEmailOptions constructor

SendEmailOptions({
  1. List<String>? toContacts = const [],
  2. String? toGroup,
  3. List<String>? to = const [],
  4. String? from,
  5. List<String>? cc = const [],
  6. List<String>? bcc = const [],
  7. String? subject,
  8. String? replyTo,
  9. String? body,
  10. bool? html,
  11. bool? isHTML,
  12. String? charset,
  13. List<String>? attachments = const [],
  14. Map<String, Object>? templateVariables = const {},
  15. String? template,
  16. SendEmailOptionsSendStrategyEnum? sendStrategy,
  17. bool? useInboxName,
  18. bool? addTrackingPixel,
  19. bool? filterBouncedRecipients,
  20. SendEmailOptionsValidateEmailAddressesEnum? validateEmailAddresses,
})

Returns a new SendEmailOptions instance.

Implementation

SendEmailOptions({
  this.toContacts = const [],
  this.toGroup,
  this.to = const [],
  this.from,
  this.cc = const [],
  this.bcc = const [],
  this.subject,
  this.replyTo,
  this.body,
  this.html,
  this.isHTML,
  this.charset,
  this.attachments = const [],
  this.templateVariables = const {},
  this.template,
  this.sendStrategy,
  this.useInboxName,
  this.addTrackingPixel,
  this.filterBouncedRecipients,
  this.validateEmailAddresses,
});