james
james

Reputation: 491

Auto Load Office Add-In Outlook

Is there a way to have an Office JS Add-in autoload without the user having to click the add-in button in the ribbon toolbar?

For example, we have an add-in that auto adds a BCC email address. We would like the add-in to be able to automatically add the BCC email address w/o having to click the add-in button.

We did this with a VSTO plugin but could not find a way to do this using the new Add-In JS API.

Upvotes: 0

Views: 251

Answers (1)

SureshGowtham S
SureshGowtham S

Reputation: 686

  1. A web add-in can add support for ItemSend event (these add-ins are automatically opened in background, when the user clicks on send button) but have a look at limitations of ItemSend before taking that route.
  2. A web add-in can support pinning (if the user has pinned the add-in, next time the add-in automatically opens in task pane).

There is no other way to open a web add-in without user interaction. There is user voice, which is similar to your scenario, you can add your support to that.

Upvotes: 1

Related Questions