Ghost/ghost/staff-service/lib/email-templates/donation.txt.js
Djordje Vlaisavljevic aeff42811c
Updated tips & donations settings and email notification design (#17679)
refs https://github.com/TryGhost/Product/issues/3693, https://github.com/TryGhost/Product/issues/3666

- Updated Tips&Donations email notification design to put focus onto the
amount
- Removed unnecessary gap between Free and Premium tiers in Membership
settings
- Improved the copy to better explain the feature
2023-08-10 18:35:42 +01:00

14 lines
416 B
JavaScript

module.exports = function (data) {
// Be careful when you indent the email, because whitespaces are visible in emails!
return `
Cha-ching!
You received a one-time payment from of ${data.donation.amount} from "${data.donation.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}.
`;
};