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] (spam reporting) Update description of the MoreInfo manifest element #1894

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 5 additions & 3 deletions docs/manifest/moreinfo.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
---
title: MoreInfo element in the manifest file (preview)
description: The MoreInfo element specifies the custom text and URL that direct users to informational resources from the preprocessing dialog of a spam-reporting add-in in Outlook.
ms.date: 07/20/2023
ms.date: 04/11/2024
ms.localizationpriority: medium
---

# MoreInfo element (preview)

Specifies the custom text and URL to provide informational resources to the users from the preprocessing dialog of a spam-reporting add-in in Outlook. The information provided in this element helps users identify and report unsolicited messages.
Specifies a link with custom text and URL to provide informational resources to the users from the preprocessing dialog of a spam-reporting add-in in Outlook. The information provided in this element helps users identify and report unsolicited messages.

In the preprocessing dialog, the link is automatically prefixed with "For more info go to: ". It appears after the text provided in the [Description](preprocessingdialog.md#child-elements) child element of the **\<PreProcessingDialog\>** element.

To learn more about how to implement the spam reporting feature in your add-in, see [Implement an integrated spam-reporting add-in (preview)](/office/dev/add-ins/outlook/spam-reporting).

Expand Down Expand Up @@ -35,7 +37,7 @@ None.

| Element | Required | Description |
| ------- | ------- | -------|
| **MoreInfoText** | Yes | Specifies additional information in the preprocessing dialog of a spam-reporting add-in to help users report unsolicited messages. Its **resid** attribute must be set to the value of the **id** attribute of a [String](string.md) in the [ShortStrings](shortstrings.md) element under the [Resources](resources.md) element. |
| **MoreInfoText** | Yes | Specifies the custom text of a link in the preprocessing dialog of a spam-reporting add-in. This link is used to provide additional information to help users report unsolicited messages. Its **resid** attribute must be set to the value of the **id** attribute of a [String](string.md) in the [ShortStrings](shortstrings.md) element under the [Resources](resources.md) element.<br><br>**Important**: In supported versions prior to Outlook on Windows Version 2404 (Build 17526.15020), the custom text provided in the **\<MoreInfoText\>** element isn't used as link text. Instead, the text is prepended to the URL provided in the **\<MoreInfoUrl\>** element. In these versions, the static string "For more info go to: " isn't added to the preprocessing dialog. |
| **MoreInfoUrl** | Yes | Specifies the URL of a site containing informational resources in the preprocessing dialog of a spam-reporting add-in. Its **resid** attribute must be set to the value of the **id** attribute of a [Url](url.md) in the [Urls](urls.md) element under the [Resources](resources.md) element. |

## Example
Expand Down
4 changes: 2 additions & 2 deletions docs/manifest/preprocessingdialog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: PreProcessingDialog element in the manifest file (preview)
description: The PreProcessingDialog element configures the preprocessing dialog of a spam-reporting add-in in Outlook.
ms.date: 07/20/2023
ms.date: 04/11/2024
ms.localizationpriority: medium
---

Expand Down Expand Up @@ -39,7 +39,7 @@ None.
| **Description** | Yes | Specifies the custom text that appears in the preprocessing dialog. Its **resid** attribute must be set to the value of the **id** attribute of a [String](string.md) in the [LongStrings](longstrings.md) element under the [Resources](resources.md) element. |
| [ReportingOptions](reportingoptions.md) | No | Lists up to five options a user can select from the preprocessing dialog to provide a reason for reporting a message. |
| **FreeTextLabel** | No | Adds a text box to the preprocessing dialog to allow users to provide additional information on the message they're reporting. Its **resid** attribute sets the title of the text box. The **resid** attribute must be set to the value of the **id** attribute of a [String](string.md) in the [ShortStrings](shortstrings.md) element under the [Resources](resources.md) element. |
| [MoreInfo](moreinfo.md) | No | Specifies the custom text and URL to provide informational resources to the users. The custom text and URL configured in this element appear below the text provided in the **\<Description\>** element. |
| [MoreInfo](moreinfo.md) | No | Specifies a link with custom text and URL to provide informational resources to the users. In the preprocessing dialog, the link is automatically prefixed with "For more info go to: ". It appears below the text provided in the **\<Description\>** element. |

## Example

Expand Down