PC Review


Reply
Thread Tools Rate Thread

Adding an automatic BCC to Outlook Messages

 
 
=?Utf-8?B?Um9iZXJ0IE1jTg==?=
Guest
Posts: n/a
 
      18th Apr 2007
I'd like to tweak my Outlook 2003 for Windows XP such that all of my outgoing
messages are automatically sent to a BCC. (In other words, the BCC field
will by default have an address written in it.) Is that possible?
Any thoughts would be appreciated. Thank you.
Bob
 
Reply With Quote
 
 
 
 
Roady [MVP]
Guest
Posts: n/a
 
      18th Apr 2007
See http://www.howto-outlook.com/faq/createbccrule.htm

--
Robert Sparnaaij [MVP-Outlook]
Coauthor, Configuring Microsoft Outlook 2003
http://www.howto-outlook.com/
Outlook FAQ, HowTo, Downloads, Add-Ins and more

-----
"Robert McN" <(E-Mail Removed)> wrote in message
news:80D3BC7D-7DB5-4271-BCCE-(E-Mail Removed)...
> I'd like to tweak my Outlook 2003 for Windows XP such that all of my
> outgoing
> messages are automatically sent to a BCC. (In other words, the BCC field
> will by default have an address written in it.) Is that possible?
> Any thoughts would be appreciated. Thank you.
> Bob


 
Reply With Quote
 
=?Utf-8?B?Um9iZXJ0IE1jTg==?=
Guest
Posts: n/a
 
      18th Apr 2007
Robert,
Thanks very much for the reply. I tried it but it didn't work. This is what
I did. As suggested, I opened Outlook 2003 and pressed Alt-F11 and then
drilled down until I found "This outlook session." I then added the following
code,

Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
Dim objMe As Recipient
Set objMe = Item.Recipients.Add("(E-Mail Removed)")
objMe.Type = olBCC
objMe.Resolve
Set objMe = Nothing
End Sub

The only difference is where above I have, "(E-Mail Removed)" I put in my
actual email address.
I closed the program, restarted, and opened the email message form. The BCC
field, however, was blank. I tried to do this without the parentheses and
without the quotation marks, but there resulted in error signs.
Any suggestions?
Thanks.


"Roady [MVP]" wrote:

> See http://www.howto-outlook.com/faq/createbccrule.htm
>
> --
> Robert Sparnaaij [MVP-Outlook]
> Coauthor, Configuring Microsoft Outlook 2003
> http://www.howto-outlook.com/
> Outlook FAQ, HowTo, Downloads, Add-Ins and more
>
> -----
> "Robert McN" <(E-Mail Removed)> wrote in message
> news:80D3BC7D-7DB5-4271-BCCE-(E-Mail Removed)...
> > I'd like to tweak my Outlook 2003 for Windows XP such that all of my
> > outgoing
> > messages are automatically sent to a BCC. (In other words, the BCC field
> > will by default have an address written in it.) Is that possible?
> > Any thoughts would be appreciated. Thank you.
> > Bob

>

 
Reply With Quote
 
Roady [MVP]
Guest
Posts: n/a
 
      18th Apr 2007
You won't see it during composing as it is added during sending.

--
Robert Sparnaaij [MVP-Outlook]
Coauthor, Configuring Microsoft Outlook 2003
http://www.howto-outlook.com/
Outlook FAQ, HowTo, Downloads, Add-Ins and more

-----
"Robert McN" <(E-Mail Removed)> wrote in message
news:A60F7C18-9AEC-4BB9-91F9-(E-Mail Removed)...
> Robert,
> Thanks very much for the reply. I tried it but it didn't work. This is
> what
> I did. As suggested, I opened Outlook 2003 and pressed Alt-F11 and then
> drilled down until I found "This outlook session." I then added the
> following
> code,
>
> Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
> Dim objMe As Recipient
> Set objMe = Item.Recipients.Add("(E-Mail Removed)")
> objMe.Type = olBCC
> objMe.Resolve
> Set objMe = Nothing
> End Sub
>
> The only difference is where above I have, "(E-Mail Removed)" I put in my
> actual email address.
> I closed the program, restarted, and opened the email message form. The
> BCC
> field, however, was blank. I tried to do this without the parentheses and
> without the quotation marks, but there resulted in error signs.
> Any suggestions?
> Thanks.
>
>
> "Roady [MVP]" wrote:
>
>> See http://www.howto-outlook.com/faq/createbccrule.htm
>>
>> --
>> Robert Sparnaaij [MVP-Outlook]
>> Coauthor, Configuring Microsoft Outlook 2003
>> http://www.howto-outlook.com/
>> Outlook FAQ, HowTo, Downloads, Add-Ins and more
>>
>> -----
>> "Robert McN" <(E-Mail Removed)> wrote in message
>> news:80D3BC7D-7DB5-4271-BCCE-(E-Mail Removed)...
>> > I'd like to tweak my Outlook 2003 for Windows XP such that all of my
>> > outgoing
>> > messages are automatically sent to a BCC. (In other words, the BCC
>> > field
>> > will by default have an address written in it.) Is that possible?
>> > Any thoughts would be appreciated. Thank you.
>> > Bob

>>


 
Reply With Quote
 
=?Utf-8?B?Um9iZXJ0IE1jTg==?=
Guest
Posts: n/a
 
      18th Apr 2007
Thanks for your reply Robert. I have no idea why, but I've described to you
what I did, which I think is exactly what you indicted I should do, and it
doesn't create the BCC. I even tried two different email addresses, but it
didn't work work for either. I'm not sure if you have any suggestion, but if
not, I'll just keep adding the BCC. (The motive here is that I want to have
the BCC as an archive copy stored on the web. Maybe you have another idea
about how to automatically achieve this.)

In any case, I do appreciate your help.

All the best,
Bob

"Roady [MVP]" wrote:

> You won't see it during composing as it is added during sending.
>
> --
> Robert Sparnaaij [MVP-Outlook]
> Coauthor, Configuring Microsoft Outlook 2003
> http://www.howto-outlook.com/
> Outlook FAQ, HowTo, Downloads, Add-Ins and more
>
> -----
> "Robert McN" <(E-Mail Removed)> wrote in message
> news:A60F7C18-9AEC-4BB9-91F9-(E-Mail Removed)...
> > Robert,
> > Thanks very much for the reply. I tried it but it didn't work. This is
> > what
> > I did. As suggested, I opened Outlook 2003 and pressed Alt-F11 and then
> > drilled down until I found "This outlook session." I then added the
> > following
> > code,
> >
> > Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
> > Dim objMe As Recipient
> > Set objMe = Item.Recipients.Add("(E-Mail Removed)")
> > objMe.Type = olBCC
> > objMe.Resolve
> > Set objMe = Nothing
> > End Sub
> >
> > The only difference is where above I have, "(E-Mail Removed)" I put in my
> > actual email address.
> > I closed the program, restarted, and opened the email message form. The
> > BCC
> > field, however, was blank. I tried to do this without the parentheses and
> > without the quotation marks, but there resulted in error signs.
> > Any suggestions?
> > Thanks.
> >
> >
> > "Roady [MVP]" wrote:
> >
> >> See http://www.howto-outlook.com/faq/createbccrule.htm
> >>
> >> --
> >> Robert Sparnaaij [MVP-Outlook]
> >> Coauthor, Configuring Microsoft Outlook 2003
> >> http://www.howto-outlook.com/
> >> Outlook FAQ, HowTo, Downloads, Add-Ins and more
> >>
> >> -----
> >> "Robert McN" <(E-Mail Removed)> wrote in message
> >> news:80D3BC7D-7DB5-4271-BCCE-(E-Mail Removed)...
> >> > I'd like to tweak my Outlook 2003 for Windows XP such that all of my
> >> > outgoing
> >> > messages are automatically sent to a BCC. (In other words, the BCC
> >> > field
> >> > will by default have an address written in it.) Is that possible?
> >> > Any thoughts would be appreciated. Thank you.
> >> > Bob
> >>

>

 
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
Automatic Outlook messages =?Utf-8?B?RW1pbA==?= Microsoft Outlook Installation 1 27th Feb 2006 06:44 PM
Add an automatic footer to Outlook to appear on all messages. =?Utf-8?B?RS4gT2xjb3R0?= Microsoft Outlook Discussion 1 3rd Oct 2005 05:37 PM
How do I set up Outlook to send automatic messages? =?Utf-8?B?UmV2LiBEci4gVGF5bG9y?= Microsoft Outlook Calendar 1 18th Jul 2005 01:18 PM
Generating Automatic Messages In Outlook XP =?Utf-8?B?QW5u?= Microsoft Outlook Discussion 10 18th May 2005 06:21 PM
automatic download of messages in Outlook steve Microsoft Outlook 4 1st Nov 2003 03:51 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 01:18 AM.