Browse Source

feat: add X-Mailer header to outgoing emails (#5238)

Co-authored-by: Nicolas Giard <github@ngpixel.com>
Ivan Fedorov 3 years ago
parent
commit
3407ac8829
1 changed files with 3 additions and 0 deletions
  1. 3 0
      server/core/mail.js

+ 3 - 0
server/core/mail.js

@@ -51,6 +51,9 @@ module.exports = {
     }
     await this.loadTemplate(opts.template)
     return this.transport.sendMail({
+      headers: {
+        'x-mailer': 'Wiki.js'
+      },
       from: `"${WIKI.config.mail.senderName}" <${WIKI.config.mail.senderEmail}>`,
       to: opts.to,
       subject: `${opts.subject} - ${WIKI.config.title}`,