14 lines
344 B
JavaScript
14 lines
344 B
JavaScript
|
module.exports = function (data) {
|
||
|
// Be careful when you indent the email, because whitespaces are visible in emails!
|
||
|
return `
|
||
|
Congratulations!
|
||
|
|
||
|
${data.subject}
|
||
|
|
||
|
---
|
||
|
|
||
|
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}.
|
||
|
`;
|
||
|
};
|