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

NameTypeAccessDescription
DisplayNamestring?ReadRecipient display name as stored in the MAPI recipient sub-storage.
EmailAddressstring?ReadRecipient email address (SMTP address for SMTP-type entries).
RecipientTypeintReadRecipient type: 1 = To, 2 = Cc, 3 = Bcc.
AddressTypestringReadAddress type string, typically SMTP or EX (Exchange).
PropertiesMapiPropertyCollectionReadLow-level MAPI property collection for this recipient’s storage.

See Also