Addin allowing copy of multiple contacts' email address?

K

Kristan

Does anyone know of any addins that will let me copy the primary email
adress of mutliple contacts in one go in a string, or add them to the
BCC or CC field of an email? I'd like to be able to select certain
contact while in the contacts folder and in one go, copy their addresses
so that I can add them to the BCC field in my newsletter.

thanks,

Kris
 
L

lroland

I do not know of an addin that does this, but it should should be easy
to create.

you can do somthing like

Set newMsg = golApp.CreateItem(olMailItem)
newMsg.BCC = From_Address

to create a message with its BCC field set to From_Address. Then just
oput this code in a for each loop that runs rhourgh all of the
recipetns to the original message and you are done.
 

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