How to trigger an Outlook add-in outside of Outlook -
I have an Outlook COM add-in that is registered with Outlook and send the send event to trap the contents of the message Checks out. In the add-in exams, the content is to either reject or reject the content. The COM add-in is a standard VSTO add-in.
I would like to write a C # cover around this COM add-in that will allow other processes to use this content scanning. My wrapper can load the COM add-in, but how do I go about triggering the event so that there is a COM add-in fire? Do I really have to use the Outlook Interop assembly to start sending send events to trigger the COM add-in? For procedures that do not have Outlook, I do not need to send the content, what I want to do is pass the COM add-in.
Can anyone tell me in the right direction or if this is also possible?
Your COM add-in registers for the event raised by Outlook and includes the event in which operators . COM does not add add-ins or any other Outlook events, so to trigger these events, you have to use the Outlook object model. You can write an application for this purpose by using the Outlook API.
Comments
Post a Comment