Skip to content

Instantly share code, notes, and snippets.

@Richienb
Created March 29, 2020 10:22
Show Gist options
  • Save Richienb/679ed74a987d332521b6e1508ca04edf to your computer and use it in GitHub Desktop.
Save Richienb/679ed74a987d332521b6e1508ca04edf to your computer and use it in GitHub Desktop.
Send an email in node.js
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