Envelope constructor

Envelope({
  1. DateTime? date,
  2. String? subject,
  3. List<MailAddress>? from,
  4. MailAddress? sender,
  5. List<MailAddress>? replyTo,
  6. List<MailAddress>? to,
  7. List<MailAddress>? cc,
  8. List<MailAddress>? bcc,
  9. String? inReplyTo,
  10. String? messageId,
})

Creates a new Envelope

Implementation

Envelope({
  this.date,
  this.subject,
  this.from,
  this.sender,
  this.replyTo,
  this.to,
  this.cc,
  this.bcc,
  this.inReplyTo,
  this.messageId,
});