fix(auth): Add keyword in email support for passwordless

This commit is contained in:
Mrugesh Mohapatra
2017-11-29 23:11:24 +05:30
parent 71a3cc75e3
commit af43360027
2 changed files with 3 additions and 3 deletions

View File

@ -515,7 +515,7 @@ module.exports = function(User) {
.flatMap(token => {
const { id: loginToken } = token;
const loginEmail = user.email;
const loginEmail = new Buffer(user.email).toString('base64');
const host = getServerFullURL();
const mailOptions = {
type: 'email',