Click or drag to resize

IMailCc Property

Gets the address(es) of others who are to receive this email message ('CC', Carbon Copy header), even tough the content of the message may not be directed at them. In this collection you can find MailBox which represent 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.23341.1754
Syntax
IList<MailAddress> Cc { get; }

Property Value

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