| MailMessageCc Property | 
Namespace: MailBee.Mime
 Syntax
Syntax Exceptions
Exceptions| Exception | Condition | 
|---|---|
| MailBeeInvalidArgumentException | value is a null reference (Nothing in Visual Basic). | 
 Remarks
RemarksIf it's necessary to add some hidden recipients that should not be displayed in the mail message, the developer should use the Bcc property.
 Examples
Examplesusing System; using MailBee; using MailBee.Mime; class Sample { static void Main(string[] args) { // Load the message from file. MailMessage msg = new MailMessage(); msg.LoadMessage(@"C:\Docs\TestMail.eml"); Console.WriteLine("The list of CC recipients of the message:"); // For each carbon copy recipient... foreach (EmailAddress adr in msg.Cc) { // ...show e-mail address. Console.WriteLine(adr.Email); } } }
 See Also
See Also