2023-08-07 16:36:59 +03:00
|
|
|
module.exports = function (data) {
|
|
|
|
// Be careful when you indent the email, because whitespaces are visible in emails!
|
|
|
|
return `
|
2023-08-10 20:35:42 +03:00
|
|
|
Cha-ching!
|
2023-08-07 16:36:59 +03:00
|
|
|
|
2023-08-10 20:35:42 +03:00
|
|
|
You received a one-time payment from of ${data.donation.amount} from "${data.donation.name}".
|
2023-08-07 16:36:59 +03:00
|
|
|
|
2024-08-28 15:08:42 +03:00
|
|
|
Message: ${data.donation.donationMessage ? data.donation.donationMessage : 'No message provided'}
|
|
|
|
|
2023-08-07 16:36:59 +03:00
|
|
|
---
|
|
|
|
|
|
|
|
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}.
|
|
|
|
`;
|
|
|
|
};
|