yup that worked!
super easy fix, many thanks
š
There is no setting or template for email subjects, so I modified the code:
--- a/src/emailer.js
+++ b/src/emailer.js
@@ -229,7 +229,7 @@ Emailer.sendToEmail = function (template, email, language, params, callback) {
to: email,
from: meta.config['email:from'] || '[email protected]' + getHostname(),
from_name: meta.config['email:from_name'] || 'NodeBB',
- subject: results.subject,
+ subject: '[' + meta.config['title'] + '] ' + results.subject,
html: results.html,
plaintext: htmlToText.fromString(results.html, {
ignoreImage: true,
I think this should be a setting.
@tlinden open an issue on Github requesting the feature, please