MoreInfo element
Specifies 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. It appears after the text provided in the Description 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.
Add-in type: Mail
Valid only in these VersionOverrides schemas:
- Mail 1.1
For more information, see Version overrides in the add-in only manifest.
Associated with these requirement sets:
Contained in
Attributes
None.
Child elements
Element | Required | Description |
---|---|---|
MoreInfoText | Yes | Specifies additional information in the preprocessing dialog of a spam-reporting add-in to help users report unsolicited messages. The resid attribute must be set to the value of the id attribute of a String in the ShortStrings element under the Resources element. Depending on the Outlook client, the text specified in the <MoreInfoText> element appears before the URL that's provided in the <MoreInfoUrl> element or as link text for the URL. For more information, see MoreInfoText. |
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 in the Urls element under the Resources element. |
MoreInfoText
In Outlook on the web, classic Outlook on Windows (starting in Version 2404 (Build 17526.15020)), and new Outlook on Windows, the <MoreInfoText> element specifies the custom link text of the URL that's provided in the <MoreInfoUrl> element. On these Outlook clients, the link is automatically prefixed with the static string, "For more info go to: ".
In Outlook on Mac and earlier supported versions of classic Outlook on Windows (prior to Version 2404 (Build 17526.15020)), the <MoreInfoText> element specifies the custom text that appears before the bare URL that's provided in the <MoreInfoUrl> element.
Example
<PreProcessingDialog>
...
<MoreInfo>
<MoreInfoText resid="MoreInfo.Label"/>
<MoreInfoUrl resid="MoreInfo.Url"/>
</MoreInfo>
</PreProcessingDialog>
Office Add-ins