You would have to code this in VBA. Use the Application_ItemSend event, which passes the outgoing item as a parameter. The Recipients collection is exactly what the name implies. Check each Recipient.Type property to learn which is a Bcc. Or use the MailItem.Bcc property.
Also note that you can't move an item as it's being sent. You can, however, change the SaveSentMessageFolder property to point to a specific folder in the user's default store.
--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx
wrote in message ups.com...
I'm trying to set up a rule to move all messages that I send which have
specific names in the BCC field.
This is an outbound mail rule (i.e. "Check messages after sending" in
the new rules creation wizzard), so I can see who I'm sending to in
each of the fields (To, CC, and BCC). The rules wizzard allows for
watching rules sent through a specific account, but I cannot see how to
filter the BCC field.
Any help would be appreciated. If this is not possible through the
wizzard, I am willing to program this with VBA; however, any pointers
to which objects in the Outlook DOM would be greatly appreciated!
(PS. I'll post all code I develop for this back here and/or on
microsoft.public.outlook.vba)
Kind regards,
Kevin