Changed Appreciation to Jr High Summer; Fixed sorting of internships such that changes get properly sorted; Added a proper date on news & notices on the home page using the page's update timestamp.
This commit is contained in:
@@ -1,6 +1,32 @@
|
||||
|
||||
Accounts.emailTemplates.from = "Do Not Reply <administrator@declarativeengineering.com>";
|
||||
Accounts.emailTemplates.siteName = "Petit Teton App";
|
||||
Accounts.emailTemplates.from = "Do Not Reply <no-reply@andersonvalleyeducation.org>";
|
||||
Accounts.emailTemplates.siteName = "Anderson Valley Education Foundation";
|
||||
|
||||
Accounts.emailTemplates.resetPassword.txt = function(user, url) {
|
||||
let result;
|
||||
|
||||
result = "Hello,\n\
|
||||
\n\
|
||||
To reset your password, simply click the link below\n\
|
||||
\n\
|
||||
" + url.replace("#/reset-password","ResetPwd") + "\n\
|
||||
\n\
|
||||
Thank you,\n\
|
||||
\tAnderson Valley Education Foundation";
|
||||
|
||||
return result;
|
||||
};
|
||||
Accounts.emailTemplates.resetPassword.html = function(user, url) {
|
||||
let result;
|
||||
|
||||
result = "<p>Hello,</p>\
|
||||
<p>To reset your password, simply click the link below</p>\
|
||||
<a href='" + url.replace("#/reset-password","ResetPwd") + "'>Reset Link</a>\
|
||||
<p>Thank you,<br/>\
|
||||
<span style='text-indent: 20px'>Anderson Valley Education Foundation</span></p>";
|
||||
|
||||
return result;
|
||||
};
|
||||
// Accounts.emailTemplates.verifyEmail.subject = function (user) {
|
||||
// return "Welcome to My Site! Please verify your email";
|
||||
// };
|
||||
|
||||
Reference in New Issue
Block a user