M
mike_solomon
I have several email accounts set up in outlook
When I use my business account I want to bcc to people whenever I send
an email
I found some vba code that almost does what I want but it is not
account specific
Private Sub Application_ItemSend(ByVal Item As Object, Cancel As
Boolean)
Dim objMe As Recipient
Set objMe = Item.Recipients.Add("(e-mail address removed)")
objMe.Type = olBCC
objMe.Resolve
Set objMe = Nothing
End Sub
Is there a way to change this code so that it only works when I send
from a specific account?
When I use my business account I want to bcc to people whenever I send
an email
I found some vba code that almost does what I want but it is not
account specific
Private Sub Application_ItemSend(ByVal Item As Object, Cancel As
Boolean)
Dim objMe As Recipient
Set objMe = Item.Recipients.Add("(e-mail address removed)")
objMe.Type = olBCC
objMe.Resolve
Set objMe = Nothing
End Sub
Is there a way to change this code so that it only works when I send
from a specific account?