View Single Post
  #2  
Old September 5th 08, 04:38 AM posted to microsoft.public.outlook.program_addins
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Retrieve actual value of .To without saving first?

itm.Recipients.Resolve should do the same thing as saving the item -- resolve
all recipient names to actual addresses.
--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook Programming: Jumpstart
for Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx



"Steffen Grellmann" wrote:

Hi newsgroup,

as you can see from the code snippet below I'm trying to read the
content from the "To" field of a new Outlook mailmessage. It seems
that the item has to been saved first in order to get the \actual\
value from the .To-field.

I guess some of you will recommend to work with the Recipients
collection instead. If doing so, saving the item seems to be required
too to get actual values.

Is there another way that does not require to save the item first?

Dim itm As Object
Set itm = ActiveDocument.MailEnvelope.Item

With itm
MsgBox .To
End With

Set itm = Nothing

Kind regards,

Steffen

Ads