Skip to content

Commit 2655df9

Browse files
[Outlook] Update low engagement articles (#5443)
* Update low engagement articles * Fix bookmark * Update ms.date
1 parent 6fc88d4 commit 2655df9

18 files changed

+126
-213
lines changed

.openpublishing.redirection.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1357,6 +1357,14 @@
13571357
{
13581358
"source_path": "docs/outlook/add-in-requirements.md",
13591359
"redirect_url": "/office/dev/add-ins/concepts/requirements-for-running-office-add-ins"
1360+
},
1361+
{
1362+
"source_path": "docs/outlook/read-scenario.md",
1363+
"redirect_url": "/office/dev/add-ins/outlook/outlook-add-ins-overview"
1364+
},
1365+
{
1366+
"source_path": "docs/outlook/compose-scenario.md",
1367+
"redirect_url": "/office/dev/add-ins/outlook/outlook-add-ins-overview"
13601368
}
13611369
]
13621370
}

docs/outlook/add-and-remove-attachments-to-an-item-in-a-compose-form.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,5 @@ function removeAttachment(attachmentId) {
240240
## See also
241241

242242
- [Get an Outlook item's attachments from Exchange](get-attachments-of-an-outlook-item.md)
243-
- [Create Outlook add-ins for compose forms](compose-scenario.md)
244243
- [Asynchronous programming in Office Add-ins](../develop/asynchronous-programming-in-office-add-ins.md)
245244
- [Limits for activation and JavaScript API for Outlook add-ins](limits-for-activation-and-javascript-api-for-outlook-add-ins.md)

docs/outlook/compose-scenario.md

Lines changed: 0 additions & 51 deletions
This file was deleted.

docs/outlook/contextual-outlook-add-ins.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Contextual Outlook add-ins
33
description: Initiate tasks related to a message without leaving the message itself to result in an easier and richer user experience.
4-
ms.date: 07/18/2024
4+
ms.date: 10/30/2025
55
ms.localizationpriority: medium
66
---
77

docs/outlook/delay-delivery.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Manage the delivery date and time of a message
33
description: Learn how to schedule message delivery with the Office JavaScript API.
4-
ms.date: 10/02/2025
4+
ms.date: 10/30/2025
55
ms.topic: how-to
66
ms.localizationpriority: medium
77
---
@@ -78,4 +78,6 @@ The `item.delayDeliveryTime.setAsync` behavior differs from a message scheduled
7878

7979
## See also
8080

81-
- [Create Outlook add-ins for compose forms](compose-scenario.md)
81+
- [Asynchronous programming in Office Add-ins](../develop/asynchronous-programming-in-office-add-ins.md)
82+
- [Get, set, or add recipients to an appointment or message in Outlook](get-set-or-add-recipients.md)
83+
- [Get or set the subject when composing an appointment or message in Outlook](get-or-set-the-subject.md)

docs/outlook/delegate-access.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ To implement your shared folder and shared mailbox scenarios, use Microsoft Grap
221221
The availability of add-ins in a shared folder or shared mailbox varies depending on the scenario and Outlook client.
222222

223223
> [!TIP]
224-
> To learn more about where add-ins do and don't activate in general, refer to the [Mailbox items available to add-ins](outlook-add-ins-overview.md#mailbox-items-available-to-add-ins) section of the Outlook add-ins overview page.
224+
> To learn more about where add-ins do and don't activate in general, see the [Add-in activation limitations](outlook-add-ins-overview.md#add-in-activation-limitations) section of the Outlook add-ins overview page.
225225
226226
### Add-ins in shared folder scenarios
227227

docs/outlook/encryption-decryption.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ You must implement your own encryption and decryption protocols. The add-in must
3939

4040
### Supported environments
4141

42-
The `OnMessageRead` event is supported on the [Message Read](read-scenario.md) surface. Support varies by client and Exchange environment, as shown in the following table.
42+
The `OnMessageRead` event is supported on the Message Read surface. Support varies by client and Exchange environment, as shown in the following table.
4343

4444
| Client | Exchange Online | Exchange Subscription Edition (SE) | Exchange Server 2019 | Exchange Server 2016 |
4545
| ------ | --------------- | ---------------------------------- | -------------------- | -------------------- |

docs/outlook/get-attachments-of-an-outlook-item.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,6 @@ private string ProcessXmlResponse(XElement responseEnvelope)
467467

468468
## See also
469469

470-
- [Create Outlook add-ins for read forms](read-scenario.md)
471470
- [Manage an item's attachments in a compose form in Outlook](add-and-remove-attachments-to-an-item-in-a-compose-form.md)
472471
- [Office Add-in sample: Single Sign-On(SSO) in an Outlook add-in](https://github.com/OfficeDev/Office-Add-in-samples/tree/main/Samples/auth/Outlook-Add-in-SSO)
473472
- [Use the Microsoft Graph API](/graph/use-the-api)

docs/outlook/get-or-set-the-subject.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.localizationpriority: medium
88

99
# Get or set the subject when composing an appointment or message in Outlook
1010

11-
The Office JavaScript API provides asynchronous methods ([subject.getAsync](/javascript/api/outlook/office.subject#outlook-office-subject-getasync-member(1)) and [subject.setAsync](/javascript/api/outlook/office.subject#outlook-office-subject-setasync-member(1))) to get and set the subject of an appointment or message that the user is composing. These asynchronous methods are available only to compose add-ins. To use these methods, make sure you have set up the add-in only manifest appropriately for Outlook to [activate the add-in in compose forms](compose-scenario.md).
11+
The Office JavaScript API provides asynchronous methods ([subject.getAsync](/javascript/api/outlook/office.subject#outlook-office-subject-getasync-member(1)) and [subject.setAsync](/javascript/api/outlook/office.subject#outlook-office-subject-setasync-member(1))) to get and set the subject of an appointment or message that the user is composing. These asynchronous methods are available only to compose add-ins. To use these methods, make sure you have set up the add-in only manifest appropriately for Outlook to activate the add-in in compose forms.
1212

1313
The `subject` property is available for read access in both compose and read forms of appointments and messages. In a read form, access the property directly from the parent object, as in:
1414

@@ -114,9 +114,8 @@ function write(message) {
114114

115115
## See also
116116

117-
- [Create Outlook add-ins for compose forms](compose-scenario.md)
118117
- [Asynchronous programming in Office Add-ins](../develop/asynchronous-programming-in-office-add-ins.md)
119-
- [Get, set, or add recipients when composing an appointment or message in Outlook](get-set-or-add-recipients.md)
118+
- [Get, set, or add recipients to an appointment or message in Outlook](get-set-or-add-recipients.md)
120119
- [Insert data in the body when composing an appointment or message in Outlook](insert-data-in-the-body.md)
121120
- [Get or set the location when composing an appointment in Outlook](get-or-set-the-location-of-an-appointment.md)
122121
- [Get or set the time when composing an appointment in Outlook](get-or-set-the-time-of-an-appointment.md)

docs/outlook/get-or-set-the-time-of-an-appointment.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.localizationpriority: medium
1010

1111
Programmatically manage the start and end time of appointments to streamline meeting scheduling and enhance productivity in your Outlook add-ins.
1212

13-
The Office JavaScript API provides asynchronous methods ([Time.getAsync](/javascript/api/outlook/office.time#outlook-office-time-getasync-member(1)) and [Time.setAsync](/javascript/api/outlook/office.time#outlook-office-time-setasync-member(1))) to get and set the start or end time of an appointment being composed. These asynchronous methods are available only to compose add-ins. To use these methods, make sure you have set up the add-in only manifest of the add-in appropriately for Outlook to activate the add-in in compose forms, as described in [Create Outlook add-ins for compose forms](compose-scenario.md).
13+
The Office JavaScript API provides asynchronous methods ([Time.getAsync](/javascript/api/outlook/office.time#outlook-office-time-getasync-member(1)) and [Time.setAsync](/javascript/api/outlook/office.time#outlook-office-time-setasync-member(1))) to get and set the start or end time of an appointment being composed. These asynchronous methods are available only to compose add-ins. To use these methods, make sure you have set up the add-in only manifest of the add-in appropriately for Outlook to activate the add-in in compose forms.
1414

1515
The [start](/javascript/api/requirement-sets/outlook/preview-requirement-set/office.context.mailbox.item#properties) and [end](/javascript/api/requirement-sets/outlook/preview-requirement-set/office.context.mailbox.item#properties) properties are available for appointments in both compose and read forms. In read form, you can access the properties directly from the parent object, as in:
1616

@@ -130,9 +130,8 @@ When working with appointment times, be aware of how changes to the `start` or `
130130

131131
## See also
132132

133-
- [Create Outlook add-ins for compose forms](compose-scenario.md)
134133
- [Asynchronous programming in Office Add-ins](../develop/asynchronous-programming-in-office-add-ins.md)
135134
- [Get or set the location when composing an appointment in Outlook](get-or-set-the-location-of-an-appointment.md)
136-
- [Get, set, or add recipients when composing an appointment or message in Outlook](get-set-or-add-recipients.md)
135+
- [Get, set, or add recipients to an appointment or message in Outlook](get-set-or-add-recipients.md)
137136
- [Get or set the subject when composing an appointment or message in Outlook](get-or-set-the-subject.md)
138137
- [Insert data in the body when composing an appointment or message in Outlook](insert-data-in-the-body.md)

0 commit comments

Comments
 (0)