Outlook Web App:检索联系人

时间:2016-10-20 20:21:36

标签: outlook office-js outlook-web-app outlook-web-addins

我正在开发outlook365和outlook.com上运行的outlook web addin。我需要使用该网络插件创建,阅读和更新联系人。以下是将当前用户添加到电子邮件的To字段的示例。

function addToRecipients() {
    var item = Office.context.mailbox.item;
    var addressToAdd = {
        displayName: Office.context.mailbox.userProfile.displayName,
        emailAddress: Office.context.mailbox.userProfile.emailAddress
    };

    if (item.itemType === Office.MailboxEnums.ItemType.Message) {
        Office.cast.item.toMessageCompose(item).to.addAsync([addressToAdd]);
    } else if (item.itemType === Office.MailboxEnums.ItemType.Appointment) {
        Office.cast.item.toAppointmentCompose(item).requiredAttendees.addAsync([addressToAdd]);
    }
}

有人能指出我如何使用outlook web addin检索Outlook联系人吗?

由于

1 个答案:

答案 0 :(得分:2)

是的,makeEwsRequestAsync API是使用JS API实现它的一种方法。