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.
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);
Interface Information
| Stock Implementation | inetcomm.dll version 6.0 or later |
|---|
| Custom Implementation | No |
|---|
| Inherits from | IMimeAddressTable |
|---|
| Header and IDL files | mimeole.h, mimeole.idl |
|---|
| Minimum availability | Outlook Express
6.0 |
|---|
| Minimum operating systems |
Windows XP |
|---|