Share via


IMimeAddressTableW interface

Do not use. Manipulates a collection of message recipients, such as addresses. The address table is used to manipulate the address-type properties on an IMimePropertySet object. Addresses are stored as part of the RFC 822 or RFC 1521 message header. The methods of IMimeAddressTableW support Unicode.

Members

The IMimeAddressTableW interface inherits from IMimeAddressTable but does not have additional members.

Remarks

There are multiple ways in which a client can obtain an IMimeAddressTableW object:

  • By calling CoCreateInstance (IMimeAddressTableW does not support aggregation), for example:

    CoCreateInstance(CLSID_IMimeAddressTableW, NULL, CLSCTX_INPROC_SERVER, IID_IMimeAddressTableW, (LPVOID *)&pAddressTableW);

  • By using an IMimePropertySet object, for example:

    IMimePropertySet::BindToObject(IID_IMimeAddressTableW, (LPVOID *)&pAddressTableW);

  • By using an IMimeBodyW object, for example:

    IMimeBodyW::BindToObject(&pAddressTableW);

  • By using an IMimeMessage object, for example:

    IMimeMessage::GetAddressTable(hBody, IID_IMimeAddressTableW, (LPVOID *)&pAddressTableW);

Requirements

Minimum supported client
Windows XP [desktop apps only]
Minimum supported server
Windows Server 2003 [desktop apps only]
Product
Outlook Express 6.0
Header
Mimeole.h
IDL
Mimeole.idl
DLL
Inetcomm.dll (version 6.0 or later)