Skip to content

Instantly share code, notes, and snippets.

@bcamarneiro
Created May 6, 2014 14:34
Show Gist options
  • Save bcamarneiro/df6ab908a8ea85204f19 to your computer and use it in GitHub Desktop.
Save bcamarneiro/df6ab908a8ea85204f19 to your computer and use it in GitHub Desktop.
VBA Script To Outlook 2013 that sets Auto BCC
Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
Dim Msg As Outlook.MailItem
Dim onsMapi As Outlook.NameSpace
Dim objRecip As Recipient
Dim strMsg As String
Dim res As Integer
Dim strBcc As String
On Error Resume Next
strBcc = "jorge.cantadeiro@rederia.com"
Set objRecip = Item.Recipients.Add(strBcc)
objRecip.Type = olBCC
If Not objRecip.Resolve Then
strMsg = "Could not resolve the Bcc recipient. " & "Do you want still to send the message?"
res = MsgBox(strMsg, vbYesNo + vbDefaultButton1, "Could Not Resolve Bcc Recipient")
If res = vbNo Then
Cancel = True
End If
End If
Set objRecip = Nothing
End Sub
@hari146
Copy link

hari146 commented Dec 10, 2017

Hi .....This is Nandha
Can you tell me the VBA Script to Outlook 2016 that sets Auto CC.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment