View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Ron de Bruin Ron de Bruin is offline
external usenet poster
 
Posts: 11,123
Default BCC global distribution list

See the Tips page
http://www.rondebruin.nl/mail/tips2.htm

Or Send to Outlook Distribution Group
Instead of .To " use

.Recipients.Add "GroupName"



--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"JoshC" wrote in message ...
i am sending a message in vba and the part of the code i am having issues
with is as follows:
With OutMail
.To = ""
.CC = ""
.BCC = ""
.Subject = "subject"
.HTMLBody = RangetoHTML(rng)
.Display

i cannot figure out how to BCC a global distribution list in this code.
does anyone have any ideas? thanks