outlook-web-addins

Outlook Web-add in - Change color of the title bar

一笑奈何 提交于 2020-01-24 00:30:15
问题 I am trying to change the color of the title bar in my addin. I see in the xml file which produces the title on the title bar. What is the correct way to hook into the title bar? I see something similar question for C# Is there any way to change border/header background in VSTO outlook add in? in-vsto-outlook-add-in Please see attach photo to the area I want to change the background color for. 回答1: Currently this capability (changing the color of the title bar) is not available for add-ins.

How to properly handle multiple taskpanes in office-react-addin?

こ雲淡風輕ζ 提交于 2020-01-16 08:06:09
问题 I want to create a taskpane-react project with multiple taskpanes. I have one taskpane.html as entry point: //... <body class="ms-font-m ms-Fabric"> <div id="container"></div> </body> //... And one index.js where App-component get rendered. //... Office.initialize = () => { render(App); } //... In App.jsx I want to decide if Taskpane1 or Taskpane2 should be rendered. But how can I make this decision? I don't want to use window.location.href . My app was generated with Yeoman generator for

isSetSupported('Mailbox', '1.8') returns false in add-in running in OWA with Office365

。_饼干妹妹 提交于 2020-01-14 05:35:07
问题 In a supported environment listed here. Office.context.requirements.isSetSupported('Mailbox', '1.8') is returning false in OWA (Chrome) with Office365. When can we expect isSetSupported to return true for v1.8 in this environment? I'm trying to determine if Office.context.mailbox.item.getAttachmentContentAsync() is supported on the client/server configuration running the add-in. Should we be checking the Exchange server version + client build version against known functioning permutations or

How to fetch a specific inline image using OWA REST API?

半腔热情 提交于 2020-01-14 05:34:06
问题 I'm developing OWA add-in using OWA REST API When fetching the message item, I can see in the body if there's an inline image added which is looks like <p style="margin-top:0; margin-bottom:0"> <img class="EmojiInsert" src="cid:773570bf-3178-41a4-97ac-4e3eddef859f" style=""> <br> </p> in the src I can see the contentId of the attachment but the resource reference did not says if this property is searchable or filterable, and I cant $select it in the odata query params, therefore I cant get

Office Outlook Web Addin does not work on Office Client 2016

蓝咒 提交于 2020-01-14 05:17:07
问题 I have developed an addin using Angular 5 version, I have built it and deployed on a Apache server with sercure http, I have tested this addin on Office Web App by logging in with Different users and I see that it works as I expected, But the problem Now is I opened the Outlook Client with specific user configured with it, Addin Icon on the ribbon appears but when I click on it just shows the Empty section in Addin window at the right side. The Icon and name of Add-In appears on the Ribbon,

Debugging Outlook Add-in Desktop

自闭症网瘾萝莉.ら 提交于 2020-01-13 07:15:13
问题 I'm currently developing an Add-in using yeoman and generator-office for Outlook to save an email and its attachments to another service. Outlook Version: MS Office Professional Plus 2016 v.16.0.48.49.1000 I am able to sideload the add-in by going to File->Manage Add-ins->(Outlook webapp extensions page opens)->Add from file->Select my manifest.xml. Then I run npm run start and I get: App type: desktop Enabled debugging for add-in 17717569-bd61-4c6a-b99d-ca55924a2916. Debug method: 0 Starting

Office365 - Rest API - Message ItemAttachment loosing headers & attachments when forwarded

拜拜、爱过 提交于 2020-01-06 08:42:06
问题 I'm trying to send the email as an attachment to a user by creating draft message then attaching the #Microsoft.OutlookServices.ItemAttachment using /attachments The Item parameter sent in /attachments API call is the object received from API call made to get-a-message. But when the email is received the ItemAttachment is missing the original email headers and the original email attachment. The attachment is having only the following headers: From: --Removed-- To: --Removed-- Subject: -

OfficeJS Outlook Add-in Does Not Install

柔情痞子 提交于 2020-01-03 02:57:09
问题 UPDATE #1: TL;DR: I want to target: Outlook 2016 or later Outlook on the Web Outlook 2016 for Mac Outlook for iOS Outlook for Android I require Mailbox 1.5 in order to support calling the Outlook REST APIs and to support pinnable taskpanes. Since pinnable taskpanes are only supported in Outlook 2016 for Windows, and because Mailbox 1.5 is currently only supported in Outlook on the Web, I will need to set Mailbox 1.5 in the <VersionOverrides> sections of the manifest. Based on the validation

Can't use EWS UpdateItem operation from Outlook add-in

本小妞迷上赌 提交于 2020-01-02 20:09:12
问题 I'm am trying to update a dictionary element in the IPM.Configuration.OWA.UserOptions message using an UpdateItem via an EWS (SOAP) request from an Outlook web add-in with ReadWriteMailbox permissions. However it is failing with the following error in the response: ErrorAccessDenied: Office extension is not allowed to update this type of item. The UpdateItem request I'm using is a fairly straightforward example of updating a message by it's ID and setting the value of an extended property: <

Outlook Add-in command button disabled when composing

拥有回忆 提交于 2020-01-02 07:37:15
问题 My add-in has a MessageComposeCommandSurface ExtensionPoint that adds a button to the ribbon when the user is composing a message. I expected the button to always be enabled when it is visible (e.g. when the user is composing a new message or replying to an existing one), but sometimes it is greyed out/disabled and I'm not sure why. Does anyone know the exact circumstances for when an add-in ribbon button is greyed out/disabled? 回答1: Try to disable some COM add-in and then enable it again. In