I'm using Outlook.Application
to send emails from my C# code.
I have this Voltage Encryption Add-In which allows you to "Send Secure" a message rather than the normal Send.
Can I use this Send Secure in my code? Is there some way to access add-ins?
I can loop through Microsoft.Office.Core.COMAddIns
and see that it is there but cannot really do anything with these Add-Ins. Just see basic info about them.
There is an interface exposed by the VoltageAdddIn
dll which has the "SendSecureButtonClicked(object ribbonControl)" method. Maybe I can use this somehow?