I'm creating an Outlook Add-in that will take the recipients and check to see if they exists in our database.
When the user clicks on a mailto link on a page it will pop up the Outlook compose window and the recipient will be populated as such.
Running the Add-in will lead to a nothing being returned from the Office.context.mailbox.item.to.getAsync function.
Office.initialize = function () {
$(document).ready(function () {
Office.context.mailbox.item.to.getAsync(getRecipientFromDB);
});
};
However, the recipient will now look like this:
Retrying the Add-in will now work because the Office.context.mailbox.item.to.getAsync function will actually return a result.
My Outlook version is 16.0.11029.20045.
Has anyone ran into this issue before?