MailEnvelopeObject interface

Represents a custom e-mail message in a Microsoft InfoPath form.

Namespace:  Microsoft.Office.Interop.InfoPath
Assembly:  Microsoft.Office.Interop.InfoPath (in Microsoft.Office.Interop.InfoPath.dll)

Syntax

'Declaration
<GuidAttribute("096CD588-0786-11D1-95FA-0080C78EE3BB")> _
Public Interface MailEnvelopeObject _
    Inherits MailEnvelope
'Usage
Dim instance As MailEnvelopeObject
[GuidAttribute("096CD588-0786-11D1-95FA-0080C78EE3BB")]
public interface MailEnvelopeObject : MailEnvelope

Remarks

This type is a wrapper for a coclass that is required by managed code for COM interoperability. Use this type to access the members of the COM interface implemented by this coclass. For information about the COM interface, including a link to descriptions of its members, seeMailEnvelope2.

The MailEnvelope object provides a number of properties that can be used to programmatically create a custom e-mail message within the default e-mail editor, and it attaches the currently open InfoPath form to the message.

After the e-mail message is created, the default e-mail editor will display the e-mail message; users can then inspect and edit the e-mail message before sending it.

Note

The MailEnvelope object cannot be used to send the e-mail messages it creates; users must manually send the e-mail messages.

You can also use the ShowMailItem method to programmatically create e-mail messages; users must manually send the e-mail messages.

You can also use the ShowMailItem method of the UIObject object to programmatically create e-mail messages.

Examples

In the following example, the MailEnvelope property of the WindowObject object is used to set a reference to the MailEnvelope object.

MailEnvelopeObject myEnv = thisApplication.ActiveWindow.MailEnvelope;
myEnv.Visible = true;

See also

Reference

MailEnvelopeObject members

Microsoft.Office.Interop.InfoPath namespace