Created
March 29, 2020 10:22
-
-
Save Richienb/679ed74a987d332521b6e1508ca04edf to your computer and use it in GitHub Desktop.
Send an email in node.js
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 { promisify } = require("util") | |
const sendmail = promisify(require("sendmail")({ silent: true })) | |
module.exports = async (options) => { | |
await sendmail(options) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment