Gets the envelope (Subject, From, To...) of the specified messages. Does not set the Seen flag.

Namespace: Limilabs.Client.IMAP
Assembly: Mail (in Mail.dll) Version: 3.0.12102.1426

Syntax

C#
public List<Envelope> GetEnvelopeByUID(
	List<long> uids
)
Visual Basic
Public Function GetEnvelopeByUID ( _
	uids As List(Of Long) _
) As List(Of Envelope)
Visual C++
public:
List<Envelope^>^ GetEnvelopeByUID(
	List<long long>^ uids
)

Parameters

uids
Type: System.Collections.Generic..::..List<(Of <(<'Int64>)>)>
Unique-id of the messages to get envelope for.

Return Value

Envelope information for specified messages.

See Also