Reputation: 1542
I have a business requirement where there is a need to extend the functionality of outlook. I am exploring Office Web Addins for this requirement.I have following queries.
I need to automatically move all incoming email to an external location.Does Office JS API provide handlers to incoming email event?
If it possible to define an action with Office JS API , which when triggered can loop through all the current unread emails and perform some action on each email (like move certain emails to a certain external location )
Is it possible to append custom headers to a email being composed using Outlook web add-in?
Upvotes: 0
Views: 964
Reputation: 212
Unfortunately, it seems not possible to meet your requirements using Outlook Web Addin.
For more information, please review the following link: Outlook Add-ins overview
Upvotes: 0
Reputation: 66215
If your code only needs to run under the Windows version of Outlook, a COM addin might be a better option.
Upvotes: 1