My big initial commit to this repo and project.

This commit is contained in:
Brian McGonagill 2022-08-05 16:55:56 -05:00
parent 750811a81f
commit 8636f8cf9b
2433 changed files with 199488 additions and 1042 deletions

View file

@ -1,5 +1,5 @@
Accounts.emailTemplates.from = 'no-reply@parentpickup.org';
Accounts.emailTemplates.siteName = 'Parent Pickup';
Accounts.emailTemplates.from = 'no-reply@getmy.org';
Accounts.emailTemplates.siteName = 'Get Myp';
Accounts.emailTemplates.verifyEmail = {
subject() {
@ -8,8 +8,8 @@ Accounts.emailTemplates.verifyEmail = {
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
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;
},