How add additional addressess

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!
 
S

Sue Mosher [MVP]

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)")
 
L

laavista

Thank you so much!!!



Sue Mosher said:
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)")


--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54
 

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

Top