Emailing Distribution List

  • Thread starter Thread starter ep
  • Start date Start date
E

ep

I'm trying to automate sending an email to a distribution list in Outlook
2003 using C#. I have a DistListItem object and I'd like to somehow add that
to the BCC field of a MailItem object. Is this possible without adding each
Member of the distribution list individually?

What I’m trying to do would be similar to right clicking a
contact/distribution list and selecting “New Message to Contact.â€

Thanks for any help
 
I'm trying to automate sending an email to a distribution list in Outlook
2003 using C#. I have a DistListItem object and I'd like to somehow add that
to the BCC field of a MailItem object. Is this possible without adding each
Member of the distribution list individually?

What I’m trying to do would be similar to right clicking a
contact/distribution list and selecting “New Message to Contact.â€

Ask in the programming newsgroups. microsoft.public.outlook.program_vba seems
appropriate to me.
 
Assuming the DL has a unique, resolvable name, you can simply set the value
of the message's Bcc property to the DL name.
 
Back
Top