medusa-plugin-mailer
v1.4.0
Published
Send transactional emails with Nodemailer
Downloads
2
Maintainers
Readme
medusa-plugin-mailer
A notification service to send transactional emails with Nodemailer.
Usage
{
resolve: 'medusa-plugin-mailer',
options: {
fromEmail: process.env.EMAIL_FROM,
transport: {
host: process.env.EMAIL_SMTP_HOST,
port: process.env.EMAIL_SMTP_PORT,
secure: JSON.parse(process.env.EMAIL_SMTP_SECURE),
auth: {
user: process.env.EMAIL_SMTP_USER,
pass: process.env.EMAIL_SMTP_PASSWORD,
},
},
},
}
transport
- This is a Nodemailer transport options object, see docs.
Acknowledgement
Part of the source code is borrowed from: