Microsoft Outlook Add-in to report phishing or scam emails.
Developed using the Yeoman generator for Office Add-ins.
- Node.js
- Outlook 2016 or later on Windows
Clone this project
git clone https://github.com/ntaylor-86/PhishingReporter.gitInstall the dependencies
npm installCreate your .env file
cp .env.example .envEnter your environment variables into the .env file
# This variable will appear in the new message subject
COMPANY_NAME=""
# This variable will appear in the To address for the new message
SUPPORT_EMAIL_ADDRESS=""
Run the following command in the root of the project.
npm startIn Outlook, view a message and see the newly sideloaded add-in appear in your ribbon.
Open your webpack.config.js file and add update your version.
const version = "1.2.0.0"; // CHANGE THIS TO YOUR PRODUCTION DEPLOYMENT VERSIONAlso change your production URL to suit.
const urlProd = "https://contoso.com.au/v" + version + "/"; // CHANGE THIS TO YOUR PRODUCTION DEPLOYMENT LOCATION
const urlProdShort = "https://contoso.com.au/v" + version; // CHANGE THIS TO YOUR PRODUCTION DEPLOYMENT LOCATIONAfter your webpack.config.js has been updated run the following command:
npm run buildA new dist folder will be created in the root of the project. Upload these files to your production web server.
