No description
Find a file
2025-03-09 09:02:28 +01:00
src 0.0.10: Include subject, html and text in template params if set 2025-03-09 09:02:28 +01:00
.gitignore 0.0.4 packaging fixes 2025-01-10 14:39:14 +01:00
.npmignore maybe this works... 2025-01-10 14:54:50 +01:00
package-lock.json Version 0.0.8: Better logging 2025-03-07 22:47:48 +01:00
package.json 0.0.10: Include subject, html and text in template params if set 2025-03-09 09:02:28 +01:00
README.md Update README.md 2025-01-10 15:38:12 +01:00
tsconfig.json maybe this works... 2025-01-10 14:54:50 +01:00

Strapi email provider for Brevo

Note: This plugin should be considered experimental until 1.0.0 is released.

Why use this and not strapi-provider-email-brevo?

  • No external dependencies (uses node fetch)
  • Handle sender name and email in a more correct way
  • Send templated email using Brevo mail templates

Example configuration

module.exports = ({ env }) => ({
  // ...
  email: {
    config: {
      provider: '@k-ziran/strapi-provider-email-brevo-k',
      providerOptions: {
        apiKey: env('BREVO_API_KEY'),
      },
      settings: {
        defaultFromName: 'My Name',
        defaultFrom: 'myemail@brevo.com',
        defaultReplyToName: 'My Name',
        defaultReplyTo: 'myemail@brevo.com',
      },
    },
  },
  // ...
});