How to intercept the outlook outbox send event

257 Views Asked by At

I have a situation where i am using the scheduled email from outlook which generally adds the email in outbox to be sent later in this case i want to intercept the event which will be triggered whenever the scheduled email from the outbox is triggered

1

There are 1 best solutions below

0
On

It seems you are interested in the Application.ItemSend event which is fired whenever an Microsoft Outlook item is sent, either by the user through an Inspector (before the inspector is closed, but after the user clicks the Send button) or when the Send method for an Outlook item, such as MailItem, is used in a program.