get_my/server/accountsConfig.js

16 lines
783 B
JavaScript

Accounts.emailTemplates.from = 'no-reply@getmy.org';
Accounts.emailTemplates.siteName = 'Get My';
Accounts.emailTemplates.verifyEmail = {
subject() {
return 'Confirm Your Email Address Please';
},
text(user, url) {
let emailAddress = user.emails[0].address,
urlWithoutHash = url.replace('#/', ''),
supportEmail = "no-reply@getmy .org",
emailBody = "Thank you for signing up to use Get My!\n\n You signed up with " + emailAddress + " . Please confirm your email address.\n\n We will not enroll you in any mailing lists, nor will we ever share you email address or personal information for any reason.\n\n You can confirm you address by clicking the following link: \n\n " + urlWithoutHash
return emailBody;
},
}