u need to tap the recipients data...
VB Code:
  1. Dim oMail As Outlook.MailItem
  2. Dim oRecip As Outlook.Recipient
  3. '...other stuff...
  4. For Each oRecip In oMail.Recipients
  5.     Debug.Print oRecip.Address 'Not sure which one...
  6.     Debug.Print oRecip.AddressEntry
  7. Next