Automatically Bcc self on every item_send

G

g62msdnatll

How do I automatically and silently include myself as a Bcc recipient on
every mail item that is sent, either programmatically through an add-in, or
through some rules in the Outlook UI?
 
J

Jeffrey Tan[MSFT]

Hi Jon,

Currently, we are finding someone to help you on this issue, and we will
reply to you ASAP. Thanks for your understanding.

Best regards,
Jeffrey Tan
Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.
 
P

Peter Huang [MSFT]

Hi

I think you may try to add the BCC in the ItemSend event.
e.g.
Public WithEvents myOlApp As Application

Public Sub Initialize_handler()
Set myOlApp = Application
End Sub

Private Sub myOlApp_ItemSend(ByVal Item As Object, Cancel As Boolean)
Dim mi As MailItem
Set mi = Item
mi.BCC = "mailaddress"
mi.Body = "Test Body"
End Sub

You may have a try and let me know the result.

Best regards,

Peter Huang
Microsoft Online Partner Support

Get Secure! - www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no rights.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top