Outlook - Automatic Blind Carbon Copy (bcc)

Goal

Send automatically emails to an hidden recipient.

For example, add your address to recieve in your inbox every mail sent.

How to

Activate macros in Outlook.

Push ALT + F11 and add the following code into “This Outlook Session”.

Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
    Dim objMe As Recipient
    Set objMe = Item.Recipients.Add("monadresse@provider.com")
    objMe.Type = olBCC
    objMe.Resolve
    Set objMe = Nothing
End Sub

Links

en/desktop/outlook_autobcc.txt · Last modified: 2011/01/15 09:37 by matthieu
Recent changes RSS feed Debian Powered by PHP Valid XHTML 1.0 Valid CSS Driven by DokuWiki