MS Outlook plugin development using .NET

I am currently creating a 3-tired ASP.NET 3.5 web application that has workflows built in to approve managers. There is currently a toolbar on the website’s home page that displays all pending approvals in the web part. I want to create a plugin for MS Outlook so that whenever a new approval request appears, I want this request to be displayed in Outlook. Where to begin? Should I show my level of business logic through web services? Can someone point me to some useful material or books?

+3
source share
2 answers

I have done VBA (Visual Basic for Applications) code in the past, but I think you should check out this video on the Microsoft website .

+1
source

It has been a while, but I can give you quick heads.

Created a single add-on for Outlook 2007. Between 2003 and 2007, you develop add-ons in different ways. Since the advent of the tape in 2007.

I used WCF to configure web services (a simple API) in my web application. It then connects to this API from an Outlook application. If I remember correctly, the visual studio has a template to use for creating Office add-ins.

I just browsed Google and it was almost 2 years ago. then there was very limited information. Now there must be more.

Hope this helps.

+2
source

Source: https://habr.com/ru/post/1733415/


All Articles