Can I BCC all my sent messages from Outlook using rules?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I already bounce all my in messages from work to my home address - but I'd
like a more complete record that would include my sent messages. I can see
how the rules allow you to CC messages - but I would like to BCC so I don't
confuse people with an additional address . . .
 
Not with a rule ,but with VBA code. 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)
 
Back
Top