How to add multiple cc Addresses in Outlook 2000

  • Thread starter Thread starter Bill
  • Start date Start date
B

Bill

For regular addressees, I use the Recipients.Add method and it works
fine for multiple addresses.

Is there a collection for CC addresses? If I use oLItem.CC, I can
only add one.

So, how can I use multiple addresses? Is there a valid separator
character that I can use in a string for multiple CC's?

Thanks.
 
The Recipients collection holds everything: To, Cc and Bcc recipients. How
you set them is what makes them different. Use Recipient.Type = olCC for Cc
and Recipient.Type = olBCC for Bcc recipients.

Normal recipients (To) can be set as Recipient.Type = olTo.
 
The Recipients collection holds everything: To, Cc and Bcc recipients. How
you set them is what makes them different. Use Recipient.Type = olCC for Cc
and Recipient.Type = olBCC for Bcc recipients.

Normal recipients (To) can be set as Recipient.Type = olTo.

When I tried this, I got an error:
91 Object variable or With block variable not set

So, I though I should create olRecipient.

However,using olApp.CreateObject did not work and there is no
olItem.CreateRecipient.

How do I get rid of error 91?

Thanks again.
 
Tried what? I can't guess what your code looks like.

If you add a Recipient to the Recipients collection of an email item for
example you get back a Recipient from the Add function. Use that and set the
Type property.
 
Tried what? I can't guess what your code looks like.

If you add a Recipient to the Recipients collection of an email item for
example you get back a Recipient from the Add function. Use that and set the
Type property.

Thanks it works fine now.
 
Back
Top