MailEnvelope2.Intro Property
Gets or sets the introduction in the body of the e-mail message.
Namespace: Microsoft.Office.Interop.InfoPath.SemiTrust
Assembly: Microsoft.Office.Interop.InfoPath.SemiTrust (in Microsoft.Office.Interop.InfoPath.SemiTrust.dll)
Syntax
'Declaration
Property Intro As String
Get
Set
'Usage
Dim instance As MailEnvelope2
Dim value As String
value = instance.Intro
instance.Intro = value
string Intro { get; set; }
Property Value
Type: System.String
The introduction in the body of the e-mail message.
Remarks
Because the Intro property is new to Microsoft InfoPath 2010, you must declare and cast to the MailEnvelope2 type to access this property. For more information, see How to: Use Microsoft.Office.Interop.InfoPath.SemiTrust Members That Are Not Compatible with InfoPath 2003.
Examples
The following example sets a reference to the MailEnvelope2 object, sets envelope properties, and then displays the e-mail envelope.
MailEnvelope2 myEnv =
(MailEnvelope2)thisApplication.ActiveWindow.MailEnvelope;
myEnv.To = "someone@example.com";
myEnv.CC = "someone@example.com";
myEnv.BCC = "someone@example.com";
myEnv.Subject = "Test e-mail message";
myEnv.Intro = "This is the InfoPath form you requested.";
// Display form with e-mail envelope.
myEnv.Visible = true;