Compartilhar via


MailEnvelope2.Intro Propriedade

Definição

Obtém ou define a introdução no corpo da mensagem de email.

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

Valor da propriedade

A introdução no corpo da mensagem de email.

Exemplos

O exemplo a seguir define uma referência ao objeto MailEnvelope2 , define as propriedades do envelope e exibe o envelope de email.

MailEnvelope2 myEnv = 
   (MailEnvelope2)thisApplication.ActiveWindow.MailEnvelope;
myEnv.To = "someone@example.com";
myEnv.<span class="label">CC</span> = "someone@example.com";
myEnv.BCC = "someone@example.com";
myEnv.Subject = "Test e-mail message";
myEnv.<span class="label">Intro</span> = "This is the InfoPath form you requested.";

// Display form with e-mail envelope.
myEnv.Visible = true;

Aplica-se a