const sendmailCB = require('sendmail')({ silent: false }) const sendmail = async (mail) => new Promise((resolve, reject) => { sendmailCB(mail, (err, response) => err ? reject(err) : resolve(response)) }) module.exports = {sendmail} // await sendmail({ // from: 'no-reply@rssunlimited.com', // to: 'alancnet@gmail.com', // subject: 'Testing again', // html: 'If you can see this, this worked!', // text: 'If you can see this, this worked!' // })