Envelope class

Contains the envelope information about a message.

Constructors

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

Properties

bcc List<MailAddress>?
The bcc recipients
getter/setter pair
cc List<MailAddress>?
The cc recipients
getter/setter pair
date DateTime?
The receive date
getter/setter pair
from List<MailAddress>?
The from sender(s), usually only 1 entry
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
inReplyTo String?
The ID of the message that the associated message is replied to
getter/setter pair
messageId String?
The ID of the associated message
getter/setter pair
replyTo List<MailAddress>?
The address for replying the associated message
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
sender MailAddress?
The sender, often the same as the first from
getter/setter pair
subject String?
The message subject
getter/setter pair
to List<MailAddress>?
The to recipients
getter/setter pair

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited