X
xyz.info
I used the following code to automatically BCC every email I sent in office
to my gmail account. But it only fired for a new mail item, not when I use
Reply or Forward actions. How to make it work for those events? Thanks!
Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
Dim objMe As Recipient
Set objMe = Item.Recipients.Add("xyz.info@@@gamil.com")
objMe.Type = olBCC
objMe.Resolve
Set objMe = Nothing
End Sub
to my gmail account. But it only fired for a new mail item, not when I use
Reply or Forward actions. How to make it work for those events? Thanks!
Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
Dim objMe As Recipient
Set objMe = Item.Recipients.Add("xyz.info@@@gamil.com")
objMe.Type = olBCC
objMe.Resolve
Set objMe = Nothing
End Sub