Is there any way to find the e-mail address that an e-mail was sent to using the outlook mailitem.
Eg
VB Code:
  1. Dim omitem As Outlook.MailItem
  2. 'blah blah code
  3.  
  4. Msgbox omitem.To
Gives me my Exchange name, rather than the actual e-mail address the message was sent to, but if I physically look in the e-mail headers I can see the e-mail address, so the info is there.

Thanks