Y
yoni
OK, I know how to add an AutoBCC:
The question is, I need to add in that it should only run the BCC if the
emial was sent from a specific account in Outlook?
Thanks.
Code:
Private Sub Application_ItemSend(ByVal Item As Object, Cancel As
Boolean)
Dim objMe As Recipient
Set objMe = Item.Recipients.Add("[email protected]")
objMe.Type = olBCC
objMe.Resolve
Set objMe = Nothing
End Sub
emial was sent from a specific account in Outlook?
Thanks.