Button to send optional a BCC to myself

S

Sander

For tracking purposes I would like to have a button to add a optional a BCC to myself when I send a new message, give a reply or forward a mail. I use Outlook 2003.

Additional I want to make a rule that move the BCC send to myself moves it to a specific folder in Outlook but I can't find within mailrules the option "send to BCC" (instead To of CC). Is there an option for this or other way tho archieve this?

Thanks a lot.
 
M

Michael Bauer [MVP - Outlook]

Am Sat, 7 Jun 2008 03:56:33 -0400 schrieb Sander:

1) If there's for sure no other BCC recipient, the code looks like this:

Public Sub WhatEver()
Dim Mail as Outlook.MailItem
Dim Ins as Outlook.Inspector
Set Ins=Application.ActiveInspector
If TypeOf Ins.CurrentItem is Outlook.MaillItem Then
Set Mail=Ins.CurrentItem
Mail.Bcc="your address"
Endif
End Sub

If there can be more BCC recipients, I'd add the address to the
Mail.Recipients collection. See a sample in the VBA help.

2) You might use the rule "with specific words in the recipient address" (or
similar).

--
Viele Gruesse
Michael Bauer - MVP Outlook

: VBOffice Reporter für Datenanalyse & Berichte
: Outlook-Kategorien? Category Manager ist die Lösung
For tracking purposes I would like to have a button to add a optional a
BCC to myself when I send a new message, give a reply or forward a mail. I
use Outlook 2003.
Additional I want to make a rule that move the BCC send to myself moves it
to a specific folder in Outlook but I can't find within mailrules the option
"send to BCC" (instead To of CC). Is there an option for this or other way
tho archieve this?
 

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