skip to Main Content

Visual Studio Code – VSTO Outlook: Catching Send Event

I am trying to create plug-in that will catch any send item and show warning before sent out. Currently I am using the below code private void ThisAddIn_Startup(object sender, System.EventArgs e) { Outlook.Application application = Globals.ThisAddIn.Application; application.ItemSend += new Outlook.ApplicationEvents_11_ItemSendEventHandler(Application_ItemSend);…

VIEW QUESTION
Back To Top
Search