Questions tagged [outlook-for-mac]

Microsoft Outlook for Mac is a personal information manager from Microsoft (most notably used for handling e-mail) Mac OS X, available both as a separate application as well as a part of the Microsoft Office suite.

The tag is for version-agnostic questions on Microsoft Outlook for Mac. It is expected that questions on Stack Overflow relate to programming, so you should also be tagging your question with a tag such as (if you are programming in VBA) or , etc along with your Outlook for Mac version (if not mentioned in the question):

62 questions
19
votes
0 answers

Office js Web Addin failing to ExpandDL with soap call

I'm currently working with an Outlook Web Add-in with Office.js. In this project, we require sending mail merge emails to handle Distribution Lists and Groups. We use the ExpandDL call and our soap request looks like:
7
votes
1 answer

Is it possible to debug UI-less button for Office Add-ins?

I am trying to debug a UI-less button for an add-in for Outlook for Mac. In my code, the UI-less function in function-file.js. This is included in function-file.html, which is set as the FunctionFile url in the xml manifest. I also have the UI-less…
casvaart
  • 555
  • 1
  • 5
  • 14
6
votes
5 answers

Add-ins missing in "New Outlook" for Outlook for Mac users

I work on an add-in for Microsoft Outlook, and some of our Outlook for Mac users have recently reported that they are unable to view any add-ins in the ribbon if they have the "New Outlook" toggle turned on. The option "Get Add-ins" is accessible…
5
votes
1 answer

Outlook Mac App auth token mismatch

I am implementing an add-in for Outlook, the add-in gets an attachment and sends it to my server for processing. It works flawlessly on https://outlook.office.com but fails to run Outlook 2016 for Mac. Here is the API I am trying to access: var…
4
votes
0 answers

Size issue with body of Office.context.mailbox.displayNewAppointmentForm with text/html

I am developing an outlook add-in for Mac OS using OfficeJs API. As per the requirement, I am using Office.context.mailbox.displayNewAppointmentForm() method to open an Appointment window programmatically, on the click of the…
Kanak Sony
  • 1,570
  • 1
  • 21
  • 37
4
votes
3 answers

Outlook add-in on Outlook for Mac: clear cache?

In Outlook for Mac, an office.js Outlook add-in runs in a task pane that I assume is a Safari web control. I have not been able to determine how you clear the cached files from an add-in running in the task pane. Does anyone know how to manually…
Carbo
  • 319
  • 3
  • 13
3
votes
1 answer

Outlook WebAddin throwing internal server error when registering Office.EventType.ItemChanged

In my outlook WebAddin, i am trying to register for mail ItemChange event using below code. Office.context.mailbox.addHandlerAsync(Office.EventType.ItemChanged, mailItemSelectionChanged, [], function (result) { if(result &&…
Rajeev
  • 4,762
  • 8
  • 41
  • 63
3
votes
1 answer

Outlook Addin API body.getAsync missing some styles on mac

Office.context.mailbox.item.body.getAsync() on mac misses certain styles, such as bullet points. Details: CoercionType.Html is used. Only occurs on Outlook for Mac client, not on OWA. Outlook for Mac Version 16.13 on macOS High Sierra 10.13.2. To…
BChen
  • 41
  • 4
3
votes
1 answer

Outlook 2016 on macOS: Native Add-in, how to proceed

Problem Statement: Create a macOS Outlook add-in which responds to Calendar move and delete events and calls an API. Challenge: Most of the links say that this is not possible but there are native Outlook add-ins for Mac already out there. One…
3
votes
1 answer

Add-in command menu on MessageReadCommandSurface gets disabled in Outlook for Mac

We have an Outlook add-in which uses add-in commands that works great in Outlook 2016 for Windows and OWA but has a problem in Outlook 2016 for Mac with menu type controls on the main Outlook Home TAB (MessageReadCommandSurface). For this type of…
Carbo
  • 319
  • 3
  • 13
2
votes
0 answers

Outlook add-in - detect if running in Outlook for Mac "New Look"?

Is there a way to detect in an Outlook add-in if it is running in the "New Look" view of Outlook for Mac? We have found an issue where Office.context.mailbox.item.itemId is not populated in "New Look" as mentioned in this issue -…
camden_kid
  • 12,591
  • 11
  • 52
  • 88
2
votes
0 answers

Unable to access Office.context.mailbox.item when accessing a shared Mailbox

Version Affected: OfficeJS 1.1.38 Mac Outlook Version: 16.34 (20020900) Note: Accessing Office.context.mailbox.item.body was working for shared inbox prior to the Mac Outlook Version update. We are experiencing an issue with accessing a Shared…
Philip
  • 103
  • 1
  • 10
2
votes
1 answer

How can I recovery from the error 9030 while mailbox.item.body.getAsync failed?

I'm working on the outlook add-in. But I get the issue that sometimes Office.context.mailbox.item.body.getAsync will failed when the add-in page reloaded. The worst thing is that, once body.getAsync return the error "APICallFailedDueToItemChange",…
Andrew
  • 21
  • 3
2
votes
1 answer

Will Office 365 Add-Ins support Dark Mode on Mac

We're building an Office 365 Add-In for Outlook. Now that Outlook introduced Dark mode on Mac we wonder if there is / will be support for switching the colors/icons when outlook is running in Dark mode. So far I wasn't able to find any information…
2
votes
0 answers

EWS request not responding with error on Mac

In our Outlook add-in, we are using makeEwsRequestAsync to get the current email's MimeContent. We understand there is a 1MB request/response limit when using EWS via the JavaScript API. When we reach this limit on Windows, we at least see this…
1
2 3 4 5