PC Review


Reply
Thread Tools Rate Thread

Can I auto bcc myself on every email sent

 
 
charcooke
Guest
Posts: n/a
 
      28th Aug 2008
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.
 
Reply With Quote
 
 
 
 
Gordon
Guest
Posts: n/a
 
      28th Aug 2008
"charcooke" <(E-Mail Removed)> wrote in message
news:00B3E891-15BA-477E-96CE-(E-Mail Removed)...
>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?

 
Reply With Quote
 
igor.shred
Guest
Posts: n/a
 
      5th Oct 2008
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 Removed)" Then
'Add a recipient to be Bcc'd here ......
Set objRecipient = Item.Recipients.Add("(E-Mail 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/Micr..._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.

"charcooke" wrote:

> 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.

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Outlook 2003 does not auto poll/auto send/receive email jodie.berger1@gmail.com Microsoft Outlook Discussion 2 13th Mar 2008 07:14 PM
auto add email addresses to address book when replying a email =?Utf-8?B?QXBhY2hlMw==?= Microsoft Outlook Discussion 5 5th Feb 2006 07:38 PM
Auto Name Checking should auto select EMAIL and not display FAX =?Utf-8?B?U2xvb3BlcjI=?= Microsoft Outlook Discussion 0 4th Jan 2006 07:00 PM
In Outlook, if a rule auto-deletes an email, the new email flag i. =?Utf-8?B?T3V0bG9vaw==?= Microsoft Outlook Discussion 0 4th Mar 2005 01:21 PM
email address auto-complete populated incorrect email details =?Utf-8?B?cm9uZ2Fu?= Microsoft Outlook Discussion 7 31st Oct 2003 11:47 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 07:55 PM.