Hello Darryl,
Use the
Address property of the Recipient class to get a string representing the e-mail address of the Recipient (see
the
Recipients property of the MailItem class which returns a collection that represents all the recipients for the Outlook item). The
Type property will tell you olBCC, olCC, olOriginator, or olTo
for MailItems.
Also you can use the following properties of the MailItem class:
CC -
a String representing the display list of carbon copy (CC) names for a MailItem.
BCC -
a String representing the display list of blind carbon copy (BCC) names for a MailItem.
To -
a semicolon-delimited String list of display names for the To recipients for the Outlook item.
Note, these properties contain the display names only. The Recipients collection
should be used to modify this property and to get the SMTP addresses of recipients.