OutgoingMessage constructor

OutgoingMessage({
  1. String? html,
  2. String? text,
  3. String? subject,
  4. String? fromEmail,
  5. String? fromName,
  6. List<Recipient>? to,
  7. Map<String, String>? headers,
  8. bool? important,
  9. bool? trackOpens,
  10. bool? trackClicks,
  11. bool? autoText,
  12. bool? autoHtml,
  13. bool? inlineCss,
  14. bool? urlStripQs,
  15. bool? preserveRecipients,
  16. bool? viewContentLink,
  17. String? bccAddress,
  18. String? trackingDomain,
  19. String? signingDomain,
  20. String? returnPathDomain,
  21. bool? merge,
  22. String? mergeLanguage,
  23. Map<String, dynamic>? globalMergeVars,
  24. List<RecipientMergeVars>? mergeVars,
  25. List<String>? tags,
  26. String? subaccount,
  27. List<String>? googleAnalyticsDomains,
  28. String? googleAnalyticsCampaign,
  29. Map<String, String>? metadata,
  30. List<RecipientMetadata>? recipientMetadata,
  31. List<File>? attachments,
  32. List<File>? images,
})

Implementation

OutgoingMessage({
  this.html,
  this.text,
  this.subject,
  this.fromEmail,
  this.fromName,
  this.to,
  this.headers,
  this.important,
  this.trackOpens,
  this.trackClicks,
  this.autoText,
  this.autoHtml,
  this.inlineCss,
  this.urlStripQs,
  this.preserveRecipients,
  this.viewContentLink,
  this.bccAddress,
  this.trackingDomain,
  this.signingDomain,
  this.returnPathDomain,
  this.merge,
  this.mergeLanguage,
  this.globalMergeVars,
  this.mergeVars,
  this.tags,
  this.subaccount,
  this.googleAnalyticsDomains,
  this.googleAnalyticsCampaign,
  this.metadata,
  this.recipientMetadata,
  this.attachments,
  this.images,
});