Grab emails as they are sent

H

Humphrey

Can someone please show me how to grab an email after the Send button has
been pressed? I want to force a Save(Y/N) if the message size is over a set
limit. Sick of storing messages for no reason and wasting space.

H
 
K

Ken Slovak - [MVP - Outlook]

If you have a reference to the item being sent you can trap the Item.Send()
event. An alternative is to trap the application-wide Application_ItemSend()
event.

Go to www.outlookcode.com and search there on "send event" to find lots of
samples for both events in various languages.
 
O

oshosoul

Can someone please show me how to grab an email after the Send button has
been pressed? I want to force a Save(Y/N) if the message size is over a set
limit. Sick of storing messages for no reason and wasting space.

H

You can create the email programmatically and then you can save I on
whatever condition you want
Thanks

Vivek
 
Top