EmailAdapterObject Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents the data adapter for submitting form information in e-mail by using Microsoft Office Outlook.
public interface class EmailAdapterObject : Microsoft::Office::Interop::InfoPath::EmailAdapter
[System.Runtime.InteropServices.Guid("096CD5D7-0786-11D1-95FA-0080C78EE3BB")]
public interface EmailAdapterObject : Microsoft.Office.Interop.InfoPath.EmailAdapter
type EmailAdapterObject = interface
interface EmailAdapter
Public Interface EmailAdapterObject
Implements EmailAdapter
- Derived
- Attributes
- Implements
Examples
The following example initializes an EmailAdapter object by obtaining it from the data adapters collection, sets the To and Subject property and submits it.
<span class="label">EmailAdapterObject</span> myEmailAdapter = ((<span class="label">EmailAdapterObject</span>)thisXDocument.DataAdapters[3]);
myEmailAdapter.To = "list@example.com";
myEmailAdapter.Subject = "Status Report";
myEmailAdapter.Submit();
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, seeEmailAdapter.
Use the Item[Object] property of the DataAdaptersCollection collection to return an EmailAdapter object.
Properties
AttachmentFileName |
Gets or sets the file name to be used for the current form when the form is attached to the e-mail message of an EmailAdapterObject object. (Inherited from EmailAdapter) |
AttachmentType | (Inherited from EmailAdapter) |
BCC |
Gets or sets the BCC recipients of an e-mail message associated with an EmailAdapterObject object. (Inherited from EmailAdapter) |
CC |
Gets or sets the carbon copy (CC) recipients for the e-mail message associated with an EmailAdapterObject object. (Inherited from EmailAdapter) |
Intro |
Gets or sets the introduction in the body of the e-mail message for an EmailAdapterObject object. (Inherited from EmailAdapter) |
Name |
Gets the name of the EmailAdapterObject object. (Inherited from EmailAdapter) |
QueryAllowed |
Gets a value that always returns false, corresponding to the queryAllowed attribute in the form definition file (.xsf). (Inherited from EmailAdapter) |
Subject |
Gets or sets the subject of the e-mail message associated with the specified EmailAdapterObject object. (Inherited from EmailAdapter) |
SubmitAllowed |
Gets a value that is always true, corresponding to the submitAllowed attribute in the form definition file (.xsf). (Inherited from EmailAdapter) |
To |
Gets or sets the recipients for the e-mail message associated with a specified EmailAdapterObject object. (Inherited from EmailAdapter) |
Methods
Query() |
The Query method is available for the EmailAdapterObject object but, because the EmailAdapter object is available for submitting data only, the method will always generate a run-time error when it is called. (Inherited from EmailAdapter) |
Submit() |
Executes the submit operation on the associated adapter. (Inherited from EmailAdapter) |
SubmitData(IXMLDOMNode) |
Submits the specified DOM element or DOM document to a data adapter. (Inherited from EmailAdapter) |