How can I set up an automatic CC or BCC on outgoing emails?

T

TedF

I now have a need to send a CC or BCC to someone in my office for each
outgoing email. Is there a means to do that automatically in Outlook 2000?
 
S

Sue Mosher [MVP-Outlook]

cc: Use a rules wizard rule.

The sample code at http://www.slipstick.com/dev/code/autobcc.txt shows how
to add a Bcc recipient using the Application.ItemSend event.

Another approach, which would avoid security prompts without the need to use
Redemption, would be to create a custom form with the desired address in the
Bcc field, publish it to the Personal Forms library, and then modify the
registry to substitute the published custom form for the default. (See
http://www.slipstick.com/dev/newdefaultform.htm#sub)
 
Top