{{tag>en en:mail en:client en:windows}} ====== 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 ===== * http://www.outlookcode.com/article.aspx?id=72