summaryrefslogtreecommitdiffstats
path: root/server/notifications/email.js
diff options
context:
space:
mode:
Diffstat (limited to 'server/notifications/email.js')
-rw-r--r--server/notifications/email.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/notifications/email.js b/server/notifications/email.js
index d198b8b5..deb140a6 100644
--- a/server/notifications/email.js
+++ b/server/notifications/email.js
@@ -32,14 +32,14 @@ Meteor.startup(() => {
if (texts.length === 0) return;
// merge the cached content into single email and flush
- const text = texts.join('\n\n');
+ const html = texts.join('<br/>\n\n');
user.clearEmailBuffer();
try {
Email.send({
to: user.emails[0].address.toLowerCase(),
from: Accounts.emailTemplates.from,
subject,
- text,
+ html,
});
} catch (e) {
return;