bcc any messages sent replied or forwarded to another mail address

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How can I sent it so that and messages I send, reply to or forward (basically
anything going out) automatically Bcc's a copy to an additional set email
address ???

grateful if you could help me

Thanks
 
Hi Walshy,

this simple lines could do the job:

Private Sub Application_ItemSend(ByVal Item As Object, Cancel As
Boolean)
Item.BCC = "(e-mail address removed)"
Item.Recipients.ResolveAll
End Sub
 
That works fine but I have 2 seperate IMAP email accounts set up in Outlook.
Can I get the BCC to different email addresses depending on which account I
send the mail from?
 
Back
Top