Remove "options.template" from Email payload

Fix User.confirm to exclude "options.template" when sending the
confirmation email. Certain nodemailer transport plugins are rejecting
such requests.
This commit is contained in:
Miroslav Bajtoš 2016-12-06 15:58:27 +01:00
parent fab5bd4fc5
commit 5016703f21
2 changed files with 22 additions and 0 deletions

View File

@ -477,6 +477,10 @@ module.exports = function(User) {
function setHtmlContentAndSend(html) {
options.html = html;
// Remove options.template to prevent rejection by certain
// nodemailer transport plugins.
delete options.template;
Email.send(options, function(err, email) {
if (err) {
fn(err);

View File

@ -1668,6 +1668,24 @@ describe('User', function() {
done();
});
});
it('removes "options.template" from Email payload', function() {
var MailerMock = {
send: function(options, cb) { cb(null, options); },
};
return User.create({email: 'user@example.com', password: 'pass'})
.then(function(user) {
return user.verify({
type: 'email',
from: 'noreply@example.com',
mailer: MailerMock,
});
})
.then(function(result) {
expect(result.email).to.not.have.property('template');
});
});
});
describe('User.confirm(options, fn)', function() {