Gets an EmailArray object that contains the blind carbon copy recipients.
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.
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");
Mail Class | MailMill Namespace | EmailArray | EmailArray.Add | EmailArray.Value