james
james

Reputation: 491

Outlook Add-In Event Listeners

I am working on an Outlook JS add-in where I take the list of Recipient Emails (To, CC) and send it to a server and return back whether or not an email is already in that user's database on a website.

Is there an event listener that fires when a user Adds/Edits/Removes an email address from the To/CC ?

Upvotes: 1

Views: 242

Answers (1)

user7823505
user7823505

Reputation:

There indeed is one. Look at recipientsChangedEvent in the event types on Office.context.mailbox.item here. This was introduced as part of the requirement set 1.7.

Upvotes: 1

Related Questions