MapiRecipient
Overview
MapiRecipient represents a single addressee in a MAPI message: a To, Cc, or Bcc recipient. Read the recipient’s display name via DisplayName, email address via EmailAddress, address type via AddressType (e.g. SMTP), and recipient type via RecipientType (1 = To, 2 = Cc, 3 = Bcc). The Properties collection exposes additional MAPI property data stored in the recipient sub-storage.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
DisplayName | string? | Read | Recipient display name as stored in the MAPI recipient sub-storage. |
EmailAddress | string? | Read | Recipient email address (SMTP address for SMTP-type entries). |
RecipientType | int | Read | Recipient type: 1 = To, 2 = Cc, 3 = Bcc. |
AddressType | string | Read | Address type string, typically SMTP or EX (Exchange). |
Properties | MapiPropertyCollection | Read | Low-level MAPI property collection for this recipient’s storage. |