mirror of
https://gitlab.com/bmcgonag/get_my.git
synced 2026-03-27 00:08:49 +00:00
initial commit
This commit is contained in:
parent
b7c7d8b449
commit
750811a81f
52 changed files with 25204 additions and 92 deletions
16
server/accountsConfig.js
Normal file
16
server/accountsConfig.js
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
Accounts.emailTemplates.from = 'no-reply@parentpickup.org';
|
||||
Accounts.emailTemplates.siteName = 'Parent Pickup';
|
||||
|
||||
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@parentpickup.org",
|
||||
emailBody = "Thank you for signing up to use Parent Pickup!\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;
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue