Skip to content

Commit f52011d

Browse files
[Outlook] (mobile) Clarify support for the Notification API in Outlook on mobile devices (#5115)
* Clarify support for the Notification API in Outlook on mobile * Update ms.date
1 parent cd0e7c7 commit f52011d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/outlook/mobile-event-based.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Implement event-based activation in Outlook mobile add-ins
33
description: Learn how to develop an Outlook mobile add-in that implements event-based activation.
4-
ms.date: 03/11/2025
4+
ms.date: 04/22/2025
55
ms.topic: how-to
66
ms.localizationpriority: medium
77
---
@@ -260,7 +260,6 @@ To enable your add-in to complete tasks when the `OnNewMessageCompose` event occ
260260
}
261261

262262
// Show a notification when the signature is added to the message.
263-
// Important: Only the InformationalMessage type is supported in Outlook mobile at this time.
264263
const notification = {
265264
type: Office.MailboxEnums.ItemNotificationMessageType.InformationalMessage,
266265
message: "Company signature added.",

docs/outlook/outlook-mobile-apis.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Outlook JavaScript APIs supported in Outlook on mobile devices
33
description: Learn which Outlook JavaScript APIs are supported in Outlook on mobile devices.
4-
ms.date: 03/14/2025
4+
ms.date: 04/22/2025
55
ms.localizationpriority: medium
66
---
77

@@ -51,6 +51,7 @@ Although Outlook mobile supports up to requirement set 1.5, there are some APIs
5151
|[Office.context.mailbox.item.displayReplyForm](/javascript/api/requirement-sets/outlook/preview-requirement-set/office.context.mailbox.item#methods)|Mailbox 1.1|<ul><li>Message Read</li><li>Appointment Attendee</li></ul>|
5252
|[Office.context.mailbox.item.getRegexMatches](/javascript/api/requirement-sets/outlook/preview-requirement-set/office.context.mailbox.item#methods)|Mailbox 1.1|<ul><li>Message Read</li><li>Appointment Attendee</li></ul>|
5353
|[Office.context.mailbox.item.getRegexMatchesByName](/javascript/api/requirement-sets/outlook/preview-requirement-set/office.context.mailbox.item#methods)|Mailbox 1.1|<ul><li>Message Read</li><li>Appointment Attendee</li></ul>|
54+
|[Office.context.mailbox.item.notificationMessages](/javascript/api/requirement-sets/outlook/preview-requirement-set/office.context.mailbox.item#methods)|Mailbox 1.3|<ul><li>Appointment Attendee</li><li>Appointment Organizer</li></ul>|
5455
|[Office.context.mailbox.item.bcc.addAsync](/javascript/api/outlook/office.recipients#outlook-office-recipients-addasync-member(1))<br><br>[Office.context.mailbox.item.cc.addAsync](/javascript/api/outlook/office.recipients#outlook-office-recipients-addasync-member(1))<br><br>[Office.context.mailbox.item.to.addAsync](/javascript/api/outlook/office.recipients#outlook-office-recipients-addasync-member(1))|Mailbox 1.1|<ul><li>Message Compose</li></ul>|
5556
|[Office.context.mailbox.item.bcc.setAsync](/javascript/api/outlook/office.recipients#outlook-office-recipients-setasync-member(1))<br><br>[Office.context.mailbox.item.cc.setAsync](/javascript/api/outlook/office.recipients#outlook-office-recipients-setasync-member(1))<br><br>[Office.context.mailbox.item.to.setAsync](/javascript/api/outlook/office.recipients#outlook-office-recipients-setasync-member(1))|Mailbox 1.1|<ul><li>Message Compose</li></ul>|
5657
|[Office.context.mailbox.item.body.getTypeAsync](/javascript/api/outlook/office.body#outlook-office-body-gettypeasync-member(1))|Mailbox 1.1|<ul><li>Message Compose</li></ul>|

0 commit comments

Comments
 (0)