MailEnvelope2.Intro Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit l'introduction du corps du message électronique.
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
Valeur de propriété
L'introduction du corps du message électronique.
Exemples
L'exemple suivant définit une référence à l'objet MailEnvelope2, définit des propriétés d'enveloppe, puis affiche l'enveloppe du message électronique.
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;