blank recipient in sent items

J

Johnsoc3

I have an excel spreadsheet that uses VBA to send
mail to SMTP addresses. Outlook 2003 doesn't resolve
addresses/names correctly. The address is placed into the address, but the
display name is set to blank. When you look at the message in the OL
SentItems, it looks like there is no recipient. The Recipient does get the
email.

Relevant Code

Sub test()
Recipient = "[email protected]"
Subject = "test"
Application.Dialogs(xlDialogSendMail).Show Arg1:=Recipient,arg2:=Subject
End Sub
 
Top