Use nodemailer template engine

This commit is contained in:
Tankred Hase
2016-05-29 17:51:10 +02:00
parent 2d510038cb
commit 3a6842c296
3 changed files with 68 additions and 63 deletions

View File

@@ -48,7 +48,7 @@ describe('Email Integration Tests', function() {
});
});
describe("sendVerification", function() {
describe("sendVerifyKey", function() {
it('should work', function *() {
let options = {
userIds: [{
@@ -63,7 +63,7 @@ describe('Email Integration Tests', function() {
host: 'localhost:' + config.server.port
}
};
yield email.sendVerification(options);
yield email.sendVerifyKey(options);
});
});