> You can use the Application.ItemSend event from the Outlook object model to work with the message after the user clicks Send.
>
[quoted text clipped - 17 lines]
> > Thanks in advance for any suggestions,
> > Mark
Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
MsgBox Item.Subject
End Sub
As with any event, a good place to start is the topic in Help.

Signature
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54
> Sue,
>
[quoted text clipped - 5 lines]
>
>> You can use the Application.ItemSend event from the Outlook object model to work with the message after the user clicks Send.
>> >I have had to develop an email system without the use of Outlook, but would
>> > like to see if I can integrate the same functionality using Outlook to take
[quoted text clipped - 15 lines]
>> > Thanks in advance for any suggestions,
>> > Mark
Shri - 20 Aug 2008 21:31 GMT
Hello,
I am trying to capture every mail item when I click on the "send"
button and append a disclaimer based on the receipient to the mailitem using
VBA. In this regard, I tried to implement your code below but the code is
never initiated. What am I doing wrong?
Thanks,
Srikanth
> Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
> MsgBox Item.Subject
[quoted text clipped - 31 lines]
> >> > Thanks in advance for any suggestions,
> >> > Mark