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
 
Back
Top