Is there any way to autodefine an address field?

D

Dave

Basically, I'm looking for a way set up OL2000 so that
whenever someone in my office creates a message, it's
automatically cc'd or bcc'd to a specific address we use
to log all our outgoing mail.

Thanks
 
S

Sue Mosher [MVP-Outlook]

You can use a rule to do a cc or VBA code to bcc. 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)
 
B

Brian Tillman

Dave said:
Basically, I'm looking for a way set up OL2000 so that
whenever someone in my office creates a message, it's
automatically cc'd or bcc'd to a specific address we use
to log all our outgoing mail.

That function might better be accomplished on the server end.
 
Top