Click or drag to resize

IMailTo Property

Gets the address(es) of the primary recipient(s) of this email message ('To' header). In this collection you can find MailBox which represents single mailbox, or MailGroup which represents group of email addresses. This collection can be modified. May be empty.

Namespace: Limilabs.Mail
Assembly: Mail (in Mail.dll) Version: 3.0.26106.1555
Syntax
IList<MailAddress> To { get; }

Property Value

IListMailAddress
Remarks
You can use LINQ's To.SelectMany(address => address.GetMailboxes()) to retrieve MailBox list.
See Also