outlook-web-addins

    1热度

    1回答

    我试图通过使用权限的Outlook Web加载项的EWS(SOAP)请求,使用UpdateItem更新IPM.Configuration.OWA.UserOptions消息中的字典元素。然而,它与下面的错误未能在响应: ErrorAccessDenied: Office extension is not allowed to update this type of item. 我使用的的upd

    1热度

    2回答

    我试图显示一个在Office 2016的Outlook 2016(最近更新,EXE版本16.0.8431.2107)版本中运行的Outlook JS插件的对话框。 我在F12调试器控制台中输入的代码如下: Office.context.ui.displayDialogAsync( window.location.origin, {width: 500, height: 500},

    1热度

    1回答

    我正在开发可在所有现代浏览器,android和iOS上运行的Outlook加载项。 我使用托管EWS API来获取电子邮件,并通过将ewsUrl,itemId和ewsToken在OAuthCredentials类,这是我的远程服务及其附件。 我通过在UI中使用Office.js getCallbackTokenAsync方法获取ewsToken,并将所有这些信息传递给我的远程服务以使用Manage

    2热度

    2回答

    添加多个内嵌图片我想多张图片添加到我邮箱体office.js。 我使用下面的代码: Office.context.mailbox.item.addFileAttachmentAsync(uri, assetName, { isInline: true }, function (asyncResult) { //resolvepromise }); (我

    1热度

    2回答

    我正在开发Outlook Web插件。我正在使用REST API调用,使用Accesstoken将邮件从一个文件夹移动到另一个文件夹。 Office.context.mailbox.getCallbackTokenAsync({ isRest: true }, function (result) { if (result.status === "succeeded") {

    0热度

    1回答

    我正在为Outlook(主要是桌面版本)约会(日历)的Office Web加载项工作,但我有一些问题搞清楚,如何让我的按钮出现在正确的位置。 我希望我的按钮以阅读模式出现在约会窗体中(不能在撰写模式下),我希望它出现在与会者和约会的组织者 - 这是我的问题开始的地方。 在清单我可以指定ExtensionPoint为AppointmentAttendeeCommandSurface或Appointm

    1热度

    1回答

    试图附件从Outlook添加到电子邮件中附加还是返回了以下错误: status: failed code:9007 message:"The attachment cannot be added to the item." name:"AttachmentUploadGeneralFailure" 这发生在任何网络上使用Outlook浏览器。在Outlook 2013/2016桌面客

    0热度

    1回答

    我需要从我的Outlook Web插件访问RFC5322格式的电子邮件并将其发送到我的后端。 该插件还需要支持内部部署Exchange服务器。我尝试使用makeEwsRequestAsync API将GetItem请求IncludeMimeContent设置为true。 我得到的回应是我需要的。但是这个page提到IncludeMimeContent是昂贵的操作。 我不期望连续和许多并发GetIt

    1热度

    1回答

    Outlook 2016 for Windows。 我使用的功能Office.context.mailbox.item.body.getAsync获得的电子邮件内容: if (Office.context.requirements.isSetSupported("mailbox", 1.3)) { Office.context.mailbox.item.body.getAsync("ht

    1热度

    1回答

    我想在用户点击插件视图中的按钮时打开网址。但网络插件是抛出错误。 我的代码,打开网址: let a = document.createElement("a"); a.setAttribute('target', '_blank'); a.setAttribute("style", "display: none"); document.body.appendChild(a); a.href