Wednesday, 11 January 2012

Raising an event when user clicks send button in outlook

When user clicks on Send, the following has to be added in ThisAddIn_Startup if you wish to handle the event,

Application.ItemSend += 
new Outlook.ApplicationEvents_11_ItemSendEventHandler(Application_ItemSend);


Then you will continue to add the implementation for

Application_ItemSend(object Item, ref bool Cancel)

No comments:

Post a Comment