Can I auto bcc myself on every email sent

C

charcooke

I read the thread on sending a copy of every email to myself. However, I
would like to send a Bcc to myself. Is there any way to accomplish this with
a rule? Thanks so much for your help.
 
G

Gordon

charcooke said:
I read the thread on sending a copy of every email to myself. However, I
would like to send a Bcc to myself. Is there any way to accomplish this
with
a rule? Thanks so much for your help.


Sorry, why? You get a copy in your Sent Items folder. Why would you want to
bcc yourself?
 
I

igor.shred

charcooke,
in case you are still looking for a solution:
___
In the VB editor, add the following code (making adjustments as needed) to
the 'ThisOutlookSession' module ..........The messages in the sent items
folder will show the bcc adddress added.

Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
'BCC all mail if .....

Dim objRecipient As Recipient
'If the item is a message
If Item.Class = olMail Then
If Item.To = "(e-mail address removed)" Then
'Add a recipient to be Bcc'd here ......
Set objRecipient = Item.Recipients.Add("(e-mail address removed)")
objRecipient.Type = olBCC
Item.Recipients.ResolveAll
End If
End If
End Sub
____

This is not my solution, I found it at
http://www.experts-exchange.com/Microsoft/Applications/Q_22640920.html
Great thanks to meintsi for posting it.

Gordon, i think you should refrain from posting replies to such questions
unless you actually have an answer. Your personal opinion is of little
interest to anyone who is looking for a solution to this problem.
 

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