Ghost/ghost/staff-service/lib/email-templates/mention-report.txt.js

12 lines
360 B
JavaScript
Raw Normal View History

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}.
`;
};