rittenhop-dev/versions/5.94.2/node_modules/@tryghost/staff-service/lib/email-templates/new-free-signup.txt.js

14 lines
382 B
JavaScript
Raw Normal View History

2024-09-23 19:40:12 -04:00
module.exports = function (data) {
// Be careful when you indent the email, because whitespaces are visible in emails!
return `
Congratulations!
You have a new free member: "${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}.
`;
};