J
Jeff C
I have been trying alternatives to the code below with no luck at all. The
code works fine but am trying to add the if condition to only BCC the strBCC
if I am using my Send As account in the exchange. Can anyone point me in the
right direction? I think I am just missing something here. Thanks
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 = "MySendAsMailAddress"
If Item.SenderEmailAddress =
"mysendasmailaddress.com" Then
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
End If
Set objRecip = Nothing
End Sub
code works fine but am trying to add the if condition to only BCC the strBCC
if I am using my Send As account in the exchange. Can anyone point me in the
right direction? I think I am just missing something here. Thanks
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 = "MySendAsMailAddress"
If Item.SenderEmailAddress =
"mysendasmailaddress.com" Then
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
End If
Set objRecip = Nothing
End Sub