ReportingOptions element

Specifies the reporting options listed in the preprocessing dialog of a spam-reporting add-in in Outlook.

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 manifest.

Associated with these requirement sets:

Contained in

Attributes

None.

Child elements

Element Required Description
Title Yes Specifies the custom title of the preprocessing dialog. Its resid attribute must be set to the value of the id attribute of a String in the ShortStrings element under the Resources element.
Option Yes Specifies a custom option that a user can select from the preprocessing dialog to provide a reason for reporting a message. You can add up to five options, but must set at least one option.

Example

<PreProcessingDialog>
  ...
  <ReportingOptions>
    <Title resid="OptionsTitle.Label"/>
    <Option resid="Option1.Label"/>
    <Option resid="Option2.Label"/>
    <Option resid="Option3.Label"/>
    <Option resid="Option4.Label"/>
  </ReportingOptions>
  ...
</PreProcessingDialog>