Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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 |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Oops: You must add a Type for BCC (To is default)
See example in the VBA help -- Regards Ron de Bruin http://www.rondebruin.nl/tips.htm "Ron de Bruin" wrote in message ... 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 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Distribution list from Excel | Excel Discussion (Misc queries) | |||
Excel Distribution list | Excel Discussion (Misc queries) | |||
import from distribution list | Excel Programming | |||
Is it possible to create distribution list for Outlook? | Excel Programming | |||
Email distribution list | Excel Programming |