我有一个针对Outlook 2016桌面应用程序的Outlook外接程序开发。 我想通过我的Outlook加载项将邮件地址添加到新的Outlook To Address字段中, 当我在Outlook加载项中键入邮件地址并按“插入”按钮时,这些地址应转到Outlook新邮件中的“收件人”地址。
注意:我的目标是使用Outlook桌面应用程序,而不是使用Outlook 365。
谁能告诉我这样做的方法。
答案 0 :(得分:1)
Office.context.mailbox.item
对象具有to
属性,您可以使用setAsync
和getAsync
函数来使用该属性来处理收件人列表。 doc ... Office.context.mailbox.item.to。以下是文档中的示例...
Office.context.mailbox.item.to.setAsync( ['alice@contoso.com', 'bob@contoso.com'] );
Office.context.mailbox.item.to.addAsync( ['jason@contoso.com'] );
Office.context.mailbox.item.to.getAsync(callback);
function callback(asyncResult) {
var arrayOfToRecipients = asyncResult.value;
}