diff --git a/nodejs/models/email.js b/nodejs/models/email.js index 03dcdc1..664629b 100644 --- a/nodejs/models/email.js +++ b/nodejs/models/email.js @@ -11,7 +11,7 @@ var Mail = {}; Mail.send = async function(to, subject, message, from){ await sgMail.send({ to: to, - from: from || `${conf.name} Accounts `, + from: from || `${conf.name} Accounts `, subject: subject, text: message, html: message,