私は、outlook365 と outlook.com の両方で動作する Outlook Web アドインの開発に取り組んでいます。その Web アドインを使用して連絡先を作成、読み取り、更新する必要があります。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アドインを使用してOutlookの連絡先を取得する方法を教えてください。
ありがとう