mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 15:12:58 +03:00
14 lines
401 B
JavaScript
14 lines
401 B
JavaScript
|
module.exports = function (data) {
|
||
|
// Be careful when you indent the email, because whitespaces are visible in emails!
|
||
|
return `
|
||
|
Hey there,
|
||
|
|
||
|
A paid member has just cancelled their subscription: "${data.memberData.name}"
|
||
|
|
||
|
---
|
||
|
|
||
|
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}.
|
||
|
`;
|
||
|
};
|