Outlook Banter

Outlook Banter (http://www.outlookbanter.com/)
-   Outlook and VBA (http://www.outlookbanter.com/outlook-vba/)
-   -   Auto BCC (http://www.outlookbanter.com/outlook-vba/42933-auto-bcc.html)

Shawn Shuler March 8th 07 10:31 PM

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



Michael Bauer [MVP - Outlook] March 9th 07 06:31 AM

Auto BCC
 


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?...4&languageid=1
(German: http://www.VBOffice.net/product.html?pub=6)

Am Thu, 8 Mar 2007 15:31:39 -0700 schrieb 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.



All times are GMT +1. The time now is 07:43 AM.

Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2006 OutlookBanter.com