addin
8 TopicsUpdate Email Body in Read Mode Using Office.js in New Outlook/Web Outlook
Hello Community, We are creating an Outlook add-in that encrypts and decrypts emails using our in-house proprietry algo. As part of the decryption process, we need to modify the email body in read mode after decrypting the content. We are currently using the following Office.js API: Office.context.mailbox.item.display.body.setAsync(bodyText, (asyncResult) => { // Handle result }); This works as expected in Classic Outlook. However, it does not seem to be supported in the new Outlook or Outlook on the web (OWA). My question: Is there currently any way (including beta APIs) to update the body of an email in read mode using Office.js in the new Outlook or OWA? If not, is there a recommended workaround or a roadmap for this feature in future Office.js versions? We are open to using preview or beta APIs if necessary, as this feature is critical to our add-in functionality. Thanks in advance for your support!96Views0likes1CommentHow to Delete a Composing Email Attachment via Outlook Add-in?
Context: Server: Exchange Server 2019 on premise Client: OWA Category: Outlook Add-in Office JS API Set: Supported up to 1.5 only Problem Details: Delete an attachment added manually or through EWS API to an email item. Limitations: 1. Limitation of makeEWSRequestAsync() Office JS method: The makeEWSRequestAsync method in Office.js does not support the DeleteAttachment SOAP operation, which is required from outlook add in. -> Attempted Workaround - Using fetch with EWS SOAP Request: I tried invoking the DeleteAttachment operation via a fetch call to the EWS endpoint. However, EWS response states "requested web method is not allowed for this application". 2. OWA Limitation: As OWA in this environment only supports Office.js up to version 1.5, the modern attachment Office JS APIs and Graph APIs are not an option. Question: In an Exchange On-Premises scenario, how can I programmatically delete attachments via my add-in? Specifically, is there a recommended approach to obtain a valid token for EWS requests, or any supported alternative to perform DeleteAttachment? Any way to convert EWS attachment ID to Office JS attachment UUID? Additional Notes: I am aware that Exchange Online supports more modern APIs (Graph/REST), but my current deployment is strictly Exchange On-Premises. The add-in works well for reading attachments and other operations, except for deletion. Any guidance or recommendations would be highly appreciated! Thank you in advance.93Views0likes1CommentMicrosoft Visio Data Visualizer sign in issue
Hello every one, I have installed Microsoft Visio Data Visualizer add in. I am already signed in to office 365 and such fact is also visible while using excel on the top right side. However while clicking sign in in the said add in it is giving following error: "Sign in with your Microsoft 365 work or school account to get started. Personal accounts (hotmail.com, outlook.com etc.) aren't supported. Note: Please restart/reload the Excel once you've switched the accounts." Is there any solution to this? if yes do let me know.. Thanks1.3KViews0likes2CommentsMechanism to notify users of new add-in?
We've just deployed a very useful new add-in to users, other than an external newsletter or word of mouth - how are users meant to know about it? The problem is the add in appears under the [...] menu or they need to @ the add-in, which they don't necessarily know is available. Are there any built in mechanisms to tell users are new add-ins?1KViews0likes2CommentsOutlook Teams add in not working if signed in
Since the last update of Office 365 and Teams, the Team add in does not work in Outlook when appointments are made. I can work around this error by logging out of Office. I use the same account for teams and Office. Outlook version: 16.38 Teams Version 1.3.00.15561. It was last updated on 09/05/2020. Error Message:Solved2.1KViews0likes2CommentsReport Message add-in broken
The "Report Message" add-in from Microsoft went missing from all of my users' Outlook clients the other day. Checked out Central Deployment and attempted to refresh it and got the following error: Refresh Report Message XML Schema Validation Error. Error found during XML Schema validation. XML Schema Violation. Your manifest does not adhere to the current set of XML schema definitions for Office Add-in manifests. (f74f4493-98c5-4e43-8efb-27fe6f11bfd1) Appears to be a bug with the latest releast (v1.0.17.903) - anyone else affected or know a work around? I've opened a support case.Solved1.6KViews0likes4CommentsCreating an addin for sharepoint that uses c#
Hi Everyone, I would like tp create an addin for Sharepoint online which uses c# code and libraries. I am following the tutorial mentioned in: https://docs.microsoft.com/en-us/sharepoint/dev/sp-add-ins/get-started-creating-sharepoint-hosted-sharepoint-add-ins I have deployed the addin created from default template in Visual Studio 2019, and now I wish to include and execute a C# file for generating an access token from this framework. I am confused how to call this file from .aspx page and make it work on the sharepoint addin page. Please help.2.5KViews0likes1Comment