How add additional addressess

  • Thread starter Thread starter laavista
  • Start date Start date
L

laavista

I'm using Outlook 2002. How can I add ADDITIONAL addressees to the "TO:". I
need to retain the current addressess, then add 2 additional addressees (same
2 additional addresses each time).

Your help would be greatly appreciated!
 
Use the Recipients.Add method. For example, if myMsg is the MailItem:

Set myMsg.Recipients.Add("(e-mail address removed)")
Set myMsg.Recipients.Add("(e-mail address removed)")
 
Back
Top