1
0
Fork 0
mirror of https://gitlab.com/Alamantus/Readlebee.git synced 2025-04-06 11:41:16 +02:00
Readlebee/server/fastify-plugins/fastify-nodemailer.js
Robbie Antenesse 986346cd41 Restructure fastify plugins for better dep control:
- Copy Nodemailer and Sequelize fastify plugins to project.
- Upgrade dependencies with yarn upgrade
- Fix break from Sequelize 5 removing Model.find() in AccountController
2020-01-04 19:13:56 -07:00

46 lines
No EOL
1 KiB
JavaScript

/* Copied from https://github.com/lependu/fastify-nodemailer/blob/master/index.js
* Copied so custom Nodemailer version could be used without needing to wait for non-updated
* project to update version in NPM.
* Example Usage:
* fastify.register(require('fastify-nodemailer'), {
pool: true,
host: 'smtp.example.com',
port: 465,
secure: true, // use TLS
auth: {
user: 'username',
pass: 'password'
}
})
* Access with fastify.nodemailer.
*/
const fp = require('fastify-plugin');
const Nodemailer = require('nodemailer');
const { createTransport } = Nodemailer;
const fastifyNodemailer = (fastify, options, next) => {
let transporter = null;
try {
transporter = createTransport(options);
} catch (err) {
return next(err);
}
fastify
.decorate('nodemailer', transporter)
.addHook('onClose', close);
next();
}
const close = (fastify, done) => {
fastify.nodemailer.close(done);
}
module.exports = fp(fastifyNodemailer, {
fastify: '>=2.0.0',
name: 'fastify-nodemailer'
});