Click or drag to resize

Envelope Class

Represents combined information about envelope (subject, from to, ...) and structure (attachments) of the email stored on the IMAP server. You can use GetMessageInfoByNumber(ListInt64) or GetMessageInfoByUID(ListInt64) methods to get MessageInfos for specified emails.
Inheritance Hierarchy
SystemObject
  Limilabs.Client.IMAPEnvelope

Namespace: Limilabs.Client.IMAP
Assembly: Mail (in Mail.dll) Version: 3.0.26106.1555
Syntax
[SerializableAttribute]
public class Envelope

The Envelope type exposes the following members.

Properties
 NameDescription
Public propertyBcc Gets the addresses of others who are to receive the message ('BCC', Blind Carbon Copy header), though the content of the message may not be directed at them. This collection can be modified. May be empty.
Public propertyCc Gets the addresses of others who are to receive the message, even tough the content of the message may not be directed at them ('CC', Carbon Copy header).
Public propertyDate Gets the send date of the message ('Date' header).
Public propertyFrom Gets the author(s) of the message ('From' header).
Public propertyGmailMessageId Gmail provides a unique message ID (X-GM-MSGID) for each email so that a unique message may be identified across multiple folders. The message ID is a 64-bit unsigned integer. This property is set only if server advertises XGMailExtensions1 extension support.
Public propertyGmailThreadId Gmail provides a thread ID (X-GM-THRID) to associate groups of messages in the same manner as in the Gmail web interface. The thread ID is a 64-bit unsigned integer. This property is set only if server advertises XGMailExtensions1 extension support.
Public propertyInReplyTo Gets or sets parent message id of the message ('In-Reply-To' header). Without surrounding brackets (< and >)
Public propertyInternalDate Gets the internal date of the message (INTERNALDATE). May be null in case of parsing error.
Public propertyInternalDateString Gets a string representing the internal date of the message (INTERNALDATE).
Public propertyMessageID Gets or sets id of the message ('Message-ID' header). Without surrounding brackets (< and >)
Public propertyMessageNumber Gets message number assigned by an IMAP server.
Public propertyRaw Gets object representing raw data received from the IMAP server.
Public propertyReplyTo Gets 'Reply-to' field, mailbox(es) to which the author of the message suggests that replies be sent.
Public propertySender Gets mailbox of the agent responsible for the actual transmission ('Sender' header). If 'Sender' is empty you should use From property.
Public propertySize Size of the message.
Public propertySubject Gets the subject of the message ('Subject' header).
Public propertyTo Gets 'To' field, address(es) of the primary recipient(s) of the message.
Public propertyUID Gets UID of this message assigned by an IMAP server.
Top
Methods
 NameDescription
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Protected methodMemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Top
See Also