MailMill .NET Class Library

Mail.Bccs Property

Gets an EmailArray object that contains the blind carbon copy recipients.

public EmailArray Bccs {get;}

Remarks

Blind carbon copy recipients will receive the message but their addresses will be removed from the sent message header. The Bcc header field is kept when the message is saved on disk. Use the Add method to append an email address to the Bccs array. Use the Value property get or set a list of comma separated addresses.

Example

This sample shows how to fill the Bccs EmailArray.

Mail oMail = new Mail();
oMail.Bccs.Value = "support@emilltest.com,backup@emilltest.com";
oMail.Bccs.Add("sales@emilltest.com");

See Also

Mail Class | MailMill Namespace | EmailArray | EmailArray.Add | EmailArray.Value