0

I want to create a rule (Outlook, Transport, or otherwise) that automatically adds my email address to the BCC field when an email is being sent using my email address.

The specific case: Assistants to an attorney send emails from the attorney's email address all the time. Now the attorney wants to know when the assistant is sending the email and review what they sent off.

masegaloeh
  • 17,978
  • 9
  • 56
  • 104
blsub6
  • 1,101
  • 6
  • 25
  • 44
  • I'm confused. What address would be BCC'd? A different/alternate address? – Mike B Nov 07 '14 at 05:22
  • User@company.com is my email address. If my assistant has "send-as" permission on my mailbox, they're able to send an email that comes from User@company.com. I want to be bcc'd every time someone does that so I want to add User@company.com into the bcc field – blsub6 Nov 13 '14 at 00:53

1 Answers1

2

I'm not sure if Exchange could do an auto-BCC rule back to the same sender (user@company.com). It might be possible but that seems like it would be prone to looping/configuration issues.

That being said, Outlook does have a registry setting that lets you choose where sent items for delegate actions get stored. It's described here:

Essentially it comes down to the following key:

HKEY_CURRENT_USER\Software\Microsoft\Office\<OfficeVersion>\Outlook\Preferences
DWORD: DelegateSentItemsStyle
Data Value: 1

If set to 1, Outlook will save the sent items to the sent items folder of the mailbox that the user is sending on behalf of. This would let you check your own sent items folder for any messages that were sent by you or were sent on your behalf.

Additional blog article about it is here: http://www.msexchange.org/blogs/walther/news/outlook-2010-delegate-access-and-the-infamous-sent-items-folder-behavior-650.html

Mike B
  • 11,570
  • 42
  • 106
  • 165