mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-30 01:42:29 +03:00
12 lines
360 B
JavaScript
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}.
|
||
|
`;
|
||
|
};
|