Custom action in a rule of outlook

S

Sue Mosher [MVP-Outlook]

Use C++ or Delphi and Extended MAPI to construct a custom action .dll.

What version of Outlook are you using?
 
K

Karen Gudde

So, there is no way to make a rule like this (to bcc someone in all e-mails
going from an account) without one of those programs?
 
S

Sue Mosher [MVP-Outlook]

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)

--
Sue Mosher, Outlook MVP
Author of
Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
 
Top