Reputation: 884
I am developing an app for Office 2013 (Outlook Add In) which will be used in Outlook Web App (OWA - Office 365) and I want to initialize the App as soon as a new email arrives in the mailbox.
Right now, We have to manually initialize the app. I tried Office.context.document,office.context.roamingSettings,office.context.mailbox and many more objects of Office.js but didn't succeeded at all.
Any help would be highly appreciable.
Upvotes: 0
Views: 347
Reputation: 5834
Mail Add-ins cannot be initialized at the Mailbox level - they have to be initialized in the context of the selected message. Even then, the app still needs to be "opened" by clicking the add-in header.
https://msdn.microsoft.com/EN-US/library/office/dn893542.aspx
Upvotes: 2