programming multiple addresses in VBA

  • Thread starter Thread starter Guest
  • Start date Start date
Just keep repeating these 2 lines with different recipients each time
as many times as you want added recipients:

Set objMe = Item.Recipients.Add("(e-mail address removed)")
objMe.Type = olBCC

BTW, that URL should end in "htm" not in "txt"




Kevin Langreck said:
What is the correct syntax to add multiple addresses in Bcc in the
Slipstick code sample on http://www.slipstick.com/dev/code/autobcc.txt
? Any help?
 
Back
Top