You can trap the Send event on the opened item if it is opened using an
event handler for ActiveInspector.CurrentItem.Send.
You can trap the ItemAdd event on the Items collection of the Sent Items
folder. See http://www.outlookcode.com/d/code/zaphtml.htm#cw for a VBA/VB
example of an ItemAdd handler for the Inbox.
You can add a user property (Item.UserProperties.Add).

Signature
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Absolute Beginner's Guide to Microsoft Office Outlook 2003
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm
>I am developing a program that should do the following:
>
[quoted text clipped - 17 lines]
>
> - Rune
Dmitry Streblechenko - 30 May 2006 22:30 GMT
Or you can use the Application.ItemSend event if you don't need the sender
related properties.
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
> You can trap the Send event on the opened item if it is opened using an
> event handler for ActiveInspector.CurrentItem.Send.
[quoted text clipped - 27 lines]
>>
>> - Rune