- Add custom Reset Password template and reset password - Show the first error instead showing all errors of invalidated input values in Sign Up and changePassword templates
50 lines
2.2 KiB
JavaScript
50 lines
2.2 KiB
JavaScript
Meteor.startup(function () {
|
|
|
|
// Mail server settings
|
|
var username = Meteor.settings && Meteor.settings.mailServerSettings && Meteor.settings.mailServerSettings.username || null;
|
|
var password = Meteor.settings && Meteor.settings.mailServerSettings && Meteor.settings.mailServerSettings.password || null;
|
|
var server = Meteor.settings && Meteor.settings.mailServerSettings && Meteor.settings.mailServerSettings.server || null;
|
|
var port = Meteor.settings && Meteor.settings.mailServerSettings && Meteor.settings.mailServerSettings.port || null;
|
|
var verifyEmail = Meteor.settings && Meteor.settings.public && Meteor.settings.public.verifyEmail || false;
|
|
var siteName = Meteor.settings && Meteor.settings.public && Meteor.settings.public.siteName || "Lesion Tracker";
|
|
|
|
if (username && password && server && port) {
|
|
Accounts.emailTemplates.siteName = siteName;
|
|
Accounts.emailTemplates.from = siteName+' Admin <'+username+'>';
|
|
|
|
process.env.MAIL_URL = 'smtp://' +
|
|
encodeURIComponent(username) + ':' +
|
|
encodeURIComponent(password) + '@' +
|
|
encodeURIComponent(server) + ':' + port;
|
|
|
|
// Subject line of the email.
|
|
Accounts.emailTemplates.verifyEmail.subject = function(user) {
|
|
return 'Confirm Your Email Address for '+siteName;
|
|
};
|
|
|
|
// Email text
|
|
Accounts.emailTemplates.verifyEmail.text = function(user, url) {
|
|
return 'Thank you for registering. Please click on the following link to verify your email address: \r\n' + url;
|
|
};
|
|
|
|
// Reset password mail
|
|
Accounts.emailTemplates.resetPassword.subject = function() {
|
|
return 'Reset your '+siteName+' password'
|
|
};
|
|
|
|
Accounts.urls.resetPassword = function(token) {
|
|
return Meteor.absoluteUrl('resetPassword/' + token);
|
|
};
|
|
|
|
Accounts.emailTemplates.resetPassword.text = function(user, url) {
|
|
return "Hello " + user.profile.fullName + ",\n\n" +
|
|
"Click the following link to set your new password:\n" +
|
|
url + "\n\n";
|
|
};
|
|
|
|
// Send email when account is created
|
|
Accounts.config({
|
|
sendVerificationEmail: verifyEmail
|
|
});
|
|
}
|
|
}); |