MessageOptions constructor

MessageOptions({
  1. int? deliveryTimeOptimizePeriod,
  2. String? timeZoneLocalize,
  3. TrackingClicks? trackingClicks,
  4. Map<String, String>? customHeaders,
  5. Map<String, String>? customVars,
  6. PlanType plan = PlanType.other,
  7. bool? testMode,
  8. DateTime? deliveryTime,
  9. List<String>? tags,
  10. bool? dkim,
  11. bool? tracking,
  12. bool? trackingOpens,
  13. bool? requireTLS,
  14. bool? skipVerification,
  15. Map<String, String>? recipientVars,
})

Implementation

MessageOptions(
    {int? deliveryTimeOptimizePeriod,
    String? timeZoneLocalize,
    TrackingClicks? trackingClicks,
    Map<String, String>? customHeaders,
    Map<String, String>? customVars,
    this.plan = PlanType.other,
    this.testMode,
    this.deliveryTime,
    this.tags,
    this.dkim,
    this.tracking,
    this.trackingOpens,
    this.requireTLS,
    this.skipVerification,
    this.recipientVars}) {
  this.deliveryTimeOptimizePeriod = deliveryTimeOptimizePeriod;
  this.timeZoneLocalize = timeZoneLocalize;
  this.trackingClicks = trackingClicks;
  this.customHeaders = customHeaders;
  this.customVars = customVars;
}