MailEnvelope2.BCC Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the blind carbon copy (BCC) value used in MailEnvelopeObject that is associated with a WindowObject object.
public:
property System::String ^ BCC { System::String ^ get(); void set(System::String ^ value); };
public string BCC { get; set; }
member this.BCC : string with get, set
Public Property BCC As String
Property Value
The blind carbon copy (BCC) addresses.
Implements
Examples
MailEnvelopeObject myEnv = thisApplication.ActiveWindow.MailEnvelope;
myEnv.To = "someone@example.com";
myEnv.CC = "someone@example.com";
myEnv.<span class="label">BCC</span> = "someone@example.com";
myEnv.Subject = "Test e-mail message";
Remarks
The values set for the BCC property should be a string of valid e-mail addresses. You can specify multiple e-mail addresses by using a semi-colon (";") between each of them.