outlook add-in
2 TopicsChanging the body content of email in Outlook Add-In
Hi I am developing an outlook add-in using jQuery. I am trying to add the links to the contents of the emails in the main body. But I am not able to add the links. They only gives the option of known-entities and regular expression which do not fulfill my requirement. For example let say I have the following emails. Hi I am trying to make the outlook plugin. Please help me on that. And another email :: Hey outlook developers, I am too impatient to find the options of changing the email body in the outlook plugin. Outlook plugins are cool Now lets say i have the list of words ["Please", "body", "options", "outlook"] to which I have to add links on my email body such that the emails should change into :: Email 1: Hi I am trying to make the https://docs.microsoft.com/en-us/outlook/add-ins/ plugin. https://docs.microsoft.com/en-us/outlook/add-ins/ help me on that. and Email 2 Hey outlook developers, I am too tired to find the https://docs.microsoft.com/en-us/outlook/add-ins/ of changing the email https://docs.microsoft.com/en-us/outlook/add-ins/ in the outlook plugin. https://docs.microsoft.com/en-us/outlook/add-ins/ plugins are cool Is there any way I can achieve this in Outlook Desktop or Web in any platforms? Any help will be much appreciated.1.1KViews0likes0CommentsUpdate 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!95Views0likes1Comment