Ghost/ghost/staff-service/lib/email-templates/mention-report.txt.js
2023-03-15 21:22:13 +05:30

12 lines
360 B
JavaScript

module.exports = function (data) {
// Be careful when you indent the email, because whitespaces are visible in emails!
return `
You have been mentioned by ${data.sourceUrl}.
---
Sent to ${data.toEmail} from ${data.siteDomain}.
If you would no longer like to receive these notifications you can adjust your settings at ${data.staffUrl}.
`;
};