MailEnvelope2.To Property

Definition

Gets or sets the send-to value used in the MailEnvelopeObject object that is associated with a WindowObject object.

public:
 property System::String ^ To { System::String ^ get(); void set(System::String ^ value); };
public string To { get; set; }
member this.To : string with get, set
Public Property To As String

Property Value

The recipient (To) addresses.

Implements

To

Examples

MailEnvelopeObject myEnv = thisApplication.ActiveWindow.MailEnvelope;
myEnv.<span class="label">To</span> = "someone@example.com";
myEnv.CC = "someone@example.com";
myEnv.BCC = "someone@example.com";
myEnv.Subject = "Test e-mail message";

Remarks

The values set for the To 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.

Applies to