diff --git a/imports/modules/server/send-email.js b/imports/modules/server/send-email.js index 5c131e4..02a6f59 100644 --- a/imports/modules/server/send-email.js +++ b/imports/modules/server/send-email.js @@ -14,7 +14,8 @@ const sendEmail = (options, { resolve, reject }) => { // basic: from, to/cc/bcc/replyTo, subject, html, text, // others: watchHtml, icalEvent, headers, attachments, mailComposer, inReplyTo, references, messageId const opts = options; - opts.template = '

{{appName}}

{{{html}}}'; + // opts.template = '

{{appName}}

{{{html}}}'; + opts.template = '{{{html}}}'; opts.appName = i18n.t('AppName'); // console.log(`Email options: ${JSON.stringify(opts)}`); sendMail(opts, true);