1.4.0 • Published 1 year ago

medusa-plugin-mailer v1.4.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

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: