I need to deploy an add-in to Outlook. I have a old VBA macro that works, (save an Outlook item do pdf). But I need a modern way to deploy it to all users. Is it possible in Visual Studio Windows Form? There is a template?
Asked
Active
Viewed 179 times
1 Answers
0
You can use any .net components for getting the job done if you develop a COM add-in (for example, a VSTO based one). Basically, you may get the HTMLBody
property value and save it using the .pdf file format. See Convert HTML to PDF in .NET for more information.
Take a look at the Walkthrough: Create your first VSTO Add-in for Outlook article to get started quickly.

Eugene Astafiev
- 47,483
- 3
- 24
- 45