Skip to content

Latest commit

 

History

History

outlook-spam-reporting

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
title page_type urlFragment products languages extensions description
Report spam or phishing emails in Outlook
sample
outlook-spam-reporting
office-outlook
office
javascript
contentType technologies createdDate
samples
Add-ins
03/26/2024 10:00:00 AM
Learn how to create an integrated spam-reporting add-in in Outlook.

Report spam or phishing emails in Outlook

Applies to: Outlook on the web, Outlook on Windows (classic and new)

A sample spam-reporting dialog.

Summary

This sample showcases how to build an integrated spam-reporting solution that:

  • Is easily discoverable in the Outlook client ribbon.
  • Provides the user with a processing dialog to report an email.
  • Facilitates saving a copy of the reported email to a file to submit it to your backend system for further processing.

To learn about key components of this sample, see Implement an integrated spam-reporting add-in.

Applies to

Prerequisites

A Microsoft 365 subscription.

Note

If you don't have a Microsoft 365 subscription, you might qualify for a free developer subscription that's renewable for 90 days and comes configured with sample data. For details, see the Microsoft 365 Developer Program FAQ.

Run the sample

Run this sample in Outlook on Windows using one of the following add-in file hosting options.

Run the sample from GitHub

  1. Download the manifest.xml file from this sample to a folder on your computer.
  2. Sideload the add-in manifest in Outlook on Windows by following the manual instructions in Sideload Outlook add-ins for testing.
  3. Follow the steps in Try it out to test the sample.

Run the sample from localhost

If you prefer to host the web server for the sample on your computer, follow these steps.

  1. Install a recent version of npm and Node.js on your computer. To verify if you've already installed these tools, run the commands node -v and npm -v in your terminal.

  2. You need http-server to run the local web server. If you haven't installed this yet, run the following command.

    npm install --global http-server
  3. You need Office-Addin-dev-certs to generate self-signed certificates to run the local web server. If you haven't installed this yet, you can do this with the following command.

    npm install --global office-addin-dev-certs
  4. Clone or download this sample to a folder on your computer, then go to that folder in a console or terminal window.

  5. Run the following command to generate a self-signed certificate to use for the web server.

     npx office-addin-dev-certs install

    This command will display the folder location where it generated the certificate files.

  6. Go to the folder location where the certificate files were generated, then copy the localhost.crt and localhost.key files to the cloned or downloaded sample folder.

  7. Run the following command.

    http-server -S -C localhost.crt -K localhost.key --cors . -p 3000

    The http-server will run and host the current folder's files on localhost:3000.

  8. Now that your localhost web server is running, you can sideload the manifest-localhost.xml file provided in the sample folder. To sideload the manifest, follow the manual instructions in Sideload Outlook add-ins for testing.

  9. Follow the steps in Try it out to test the sample.

Try it out

Once the add-in is loaded in Outlook, use the following steps to try out its functionality. The images in the following steps show how the spam-reporting add-in and its dialogs appear in classic Outlook on Windows. Note that the appearance may vary depending on your Outlook client.

  1. Choose a message from your inbox, then select the add-in's button from the ribbon.

    The spam-reporting add-in button is selected from the ribbon.

  2. In the preprocessing dialog, choose a reason for reporting the message and add information about the message, if configured. Then, select Report.

    The preprocessing dialog of the sample spam-reporting add-in.

  3. In the post-processing dialog, select OK.

    The post-processing dialog of the sample spam-reporting add-in.

References

Questions and feedback

  • Did you experience any problems with the sample? Create an issue and we'll help you out.
  • We'd love to get your feedback about this sample. Go to our Office samples survey to give feedback and suggest improvements.
  • For general questions about developing Office Add-ins, go to Microsoft Q&A using the office-js-dev tag.

Copyright

Copyright (c) 2024 Microsoft Corporation. All rights reserved.

This project has adopted the Microsoft Open Source Code of Conduct. For more information, see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

Solution

Solution Author(s)
Report spam or phishing emails in Outlook Eric Legault

Version history

Version Date Comments
1.0 March 26, 2024 Initial release
1.1 July 1, 2024 Create separate JavaScript files for supported clients