This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const nodemailer = require('nodemailer'); | |
const key = require('./key.json'); | |
// Change this to one of your email addresses in the organisation | |
const YOUR_EMAIL_ADDRESS = 'info@your_company.com'; | |
// Change this to the receiver to the mail | |
const SEND_TO = 'receiver@other_company.com' | |
async function start() { |