Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Outlook] (item multi-select) Update walkthrough #5092

Merged
merged 2 commits into from
Mar 19, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/outlook/item-multi-select.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Activate your Outlook add-in on multiple messages
description: Learn how to activate your Outlook add-in when multiple messages are selected.
ms.date: 03/11/2025
ms.date: 03/19/2025
ms.topic: how-to
ms.localizationpriority: medium
---
Expand Down Expand Up @@ -257,7 +257,7 @@ The following example implements the `getSelectedItemsAsync` and `loadItemByIdAs
// Clear the list of previously selected messages, if any.
clearList(list);

// Get the subject line and sender's email address of each selected message and log it to a list in the task pane.
// Get the subject line and sender's email address of each selected message and log them to a list in the task pane.
Office.context.mailbox.getSelectedItemsAsync((asyncResult) => {
if (asyncResult.status === Office.AsyncResultStatus.Failed) {
console.log(asyncResult.error.message);
Expand All @@ -273,7 +273,7 @@ The following example implements the `getSelectedItemsAsync` and `loadItemByIdAs
async function getItemInfo(selectedItems) {
for (const item of selectedItems) {
addToList(item.subject);
if (Office.context.diagnostics.platform === Office.PlatformType.PC) {
if (Office.context.requirements.isSetSupported("Mailbox", "1.15")) {
await getSenderEmailAddress(item);
}
}
Expand Down