This topic has not yet been rated - Rate this topic

EmailAdapterObject Interface (Microsoft.Office.Interop.InfoPath)

Represents the data adapter for submitting form information in e-mail by using Microsoft Office Outlook.

Namespace: Microsoft.Office.Interop.InfoPath
Assembly: Microsoft.Office.Interop.InfoPath (in microsoft.office.interop.infopath.dll)
public interface EmailAdapterObject : EmailAdapter

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, see EmailAdapter.

Use the Item property of the DataAdaptersCollection collection to return an EmailAdapter object.

The following example initializes an EmailAdapter object by obtaining it from the data adapters collection, sets the To and Subject property and submits it.

EmailAdapterObject myEmailAdapter = ((EmailAdapterObject)thisXDocument.DataAdapters[3]);
myEmailAdapter.To = "list@example.com";
myEmailAdapter.Subject = "Status Report";
myEmailAdapter.Submit();
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.