Auto BCC

S

Shawn Shuler

I can use VBA enough to get myself in trouble. Can someone help me
automatically add my own email address to the BCC field and mark a message I
send with a follow-up flag? I would rather it be something I can choose
after I star an email because I may not always want to do this. I do,
however, want to save myself some work when I want to do this. One macro
(that I'll assign to a button) to do both tasks would be great.

Thanks.
 
M

Michael Bauer [MVP - Outlook]

Shawn, if the e-mai is open this adds the BCC:

Public Sub MyMacro()
Dim Mail as Outlook.MailItem

Set Mail=Application.ActiveInspector.CurrentItem
Mail.BCC = "your address here"
End sub

The Mail object also has some Flag* properties. Please see them in the
object browser (f2), you might the click f1 for help.

--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
The most effective way to assign Outlook categories:
http://www.shareit.com/product.html?productid=300120654&languageid=1
(German: http://www.VBOffice.net/product.html?pub=6)

Am Thu, 8 Mar 2007 15:31:39 -0700 schrieb Shawn Shuler:
 

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