Outlook add-ins event handler

In outlook account open or outlook account signIn action ,Trigger this action on my outlook add-ins I want to trigger some function in outlook add-ins when I open the outlook page

I was implement the event background sync from add-ins to outlook calendar , so i want this handler

In My outlook add-ins used Javascript language

Any thoughts about this please share me

Thanks In Advance

Upvotes: 0

Views: 1277

Answers (1)

Eugene Astafiev
Eugene Astafiev

Reputation: 49397

Outlook add-ins are run under the context of Outlook items only, so you have got access to a particular Outlook item only. Here is what MSDN states for that:

Outlook activates some types of add-ins if the message or appointment that the user is reading or composing satisfies the activation rules of the add-in. This is true for all add-ins that use the 1.1 manifest schema. The user can then choose the add-in from the Outlook UI to start it for the current item.

Also you may be interested in the event based action which is still not fully released to public (still in preview), see Configure your Outlook add-in for event-based activation for more information.

Finally, you may also post your suggestion to the Microsoft 365 Developer Platform tech community page.

Upvotes: 0

Related Questions