Envelope constructor
Envelope({
- DateTime? date,
- String? subject,
- List<
MailAddress> ? from, - MailAddress? sender,
- List<
MailAddress> ? replyTo, - List<
MailAddress> ? to, - List<
MailAddress> ? cc, - List<
MailAddress> ? bcc, - String? inReplyTo,
- 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,
});