Skip to content
This repository has been archived by the owner on Aug 30, 2021. It is now read-only.

Commit

Permalink
Add app name in email
Browse files Browse the repository at this point in the history
  • Loading branch information
amoshaviv committed Aug 2, 2014
1 parent f6e1909 commit b6cd10f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/controllers/users/users.password.server.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,8 @@ exports.reset = function(req, res, next) {
},
function(user, done) {
res.render('templates/reset-password-confirm-email', {
name: user.displayName
name: user.displayName,
appName: config.app.title
}, function(err, emailHTML) {
done(err, emailHTML, user);
});
Expand Down

0 comments on commit b6cd10f

Please sign in to comment.