Results 1 to 16 of 16

Thread: Adding a BCC depending on sender address

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #9
    Maybe because I am using a personal (and not a business) email this worked for me.

    Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
    
    
        Dim bccEmail As String
        
        If Item.SenderEmailAddress = "xxxxxxxxxxx@hotmail.com" Then
            bccEmail = "yyyyyyyyy@comcast.net"
            Item.BCC = bccEmail
        
        End If
        
    End Sub
    Attached Images Attached Images

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •