Link to home
Start Free TrialLog in
Avatar of easycapital
easycapitalFlag for Macao

asked on

Automatically have all outgoing emails have BC: specificy email

Looking to have all outgoing email sent from my Outlook 2007 send as a blank copy "BC" to an email I specify.

How do I do that?

Thanks,
JP
Avatar of Neale Williams
Neale Williams
Flag of Australia image

Here is an add-in that you can try for 14 days.
If it works as you like it is quite cheap.

http://www.office-addins.com/-outlook-addins/outlook-auto-bcc.html

ASKER CERTIFIED SOLUTION
Avatar of Chris Bottomley
Chris Bottomley
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of easycapital

ASKER

Chris,

I am trying your code first, since you responded first with the code.  I did digitally sign it using Luconsta's explanation.  I have re-opened Outlook 2007 and accepted "enable macros in Outlook"; first time I use VBA in outlook.  

The result so far has been that there nothing happening on the BC: section of the email.  I am attaching a picture of my Visual Basic editor screen.

Juan
aaa.jpg
Juan

My apologies in this case delete the code from where it is and place it into the thisoutlooksession module.  Ensure there is one copy of the sub therein ... if you need help merging two then upload the code here.

Chris
Chris,

All good stuff, I am just not placing it right.  I am attaching the picture of the editor.  It shows that I have moved the code to "ThisOutlookSession" and removed the "module".  Where do I go from here?

Juan
Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
    Item.Recipients.Add("fred@fred.com").Type = olBCC
End Sub

Open in new window

aaa.jpg
Looks OK, are macros enabled?

Check Security as appropriate:
------------------------------

In the application select Tools | Macro | Security
2003 and Earlier : Select Medium
2007 : Warnings for all Macros
Select OK

Because it simply should work on send

Chris
It worked; thanks to the both of you.

Chris, good to see you in the Outlook section too.  :)

JP