View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
JoshC JoshC is offline
external usenet poster
 
Posts: 7
Default BCC global distribution list

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