How do I use CheckNames Programmatically

  • Thread starter Thread starter Anthony
  • Start date Start date
A

Anthony

I'm trying to automate the process of sending out a
standard e-mail to a list of recipents that I only have
the alias for. I want my VB code to lookup the persons
name based on the nickname from my Global Address Book.

Which method do I use to pass the nickname and return the
full name. Can I do this with the CheckName feature?
 
Set objOutlookRecip = .Recipients.Add(vInputTo)
objOutlookRecip.Type = olTo

For Each objOutlookRecip In .Recipients
objOutlookRecip.Resolve
Next

vInputTo2 = .To
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top