Sunteți pe pagina 1din 1

https://www.extendoffice.com/documents/outlook/1107-outlook-auto-bcc.

html

Default Auto Bcc In Outlook By Using VBA

You can apply below VBA code to configure auto Bcc rule in Outlook. Please do as
follows:

1. Press the Alt + F11 keys simultaneously to open the Microsoft Visual Basic for
Applications window.

2. Double click the ThisOutlookSessionin the Project pane, and then paste below VBA
code into the opening window. See screenshot below:

Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)


Dim objRecip As Recipient
Dim strMsg As String
Dim res As Integer
Dim strBcc As String
On Error Resume Next

' #### USER OPTIONS ####


' address for Bcc -- must be SMTP address or resolvable
' to a name in the address book
strBcc = "SomeEmailAddress@domain.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

Please replace the "SomeEmailAddress@domain.com" in above code with the email


address you will bcc to.

3. Save the VBA code and close the Microsoft Visual Basic for Applications window.

From now on, you dont need to fill the address in the Bcc field. When you send
email from your outlook, it will automatically bcc to your desired recipient as the
VBA code is carrying out.

S-ar putea să vă placă și