Outlook rule to send bcc from specific account

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?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top