strapi-plugin-email-brevo
v1.1.0
Published
Strapi v5 plugin to send emails via Brevo (Sendinblue) HTTP API
Maintainers
Readme
strapi-plugin-email-brevo
A custom email provider plugin for Strapi v5, allowing you to send emails via Brevo (formerly Sendinblue) using HTTP API. Fully compatible with the Email Plugin UI and Test Email feature in Strapi Admin.
✨ Features
- ✅ Works with Strapi v5
- ✅ Sends transactional emails via Brevo HTTP API
- ✅ Fully compatible with Strapi's Email plugin interface
- ✅ Supports Test Email from Strapi Admin Panel
- ✅ Easy to configure via
.envvariables
📦 Installation
npm install strapi-plugin-email-brevo⚙️ Configuration
In your Strapi project, create or update the file config/plugins.js:
export default ({ env }) => ({
email: {
config: {
provider: "strapi-plugin-email-brevo",
providerOptions: {
apiKey: env("BREVO_API_KEY"),
},
settings: {
defaultSenderName: env("BREVO_SENDER_NAME"),
defaultSenderEmail: env("BREVO_SENDER_EMAIL"),
defaultReplyTo: env("BREVO_REPLY_TO_EMAIL"),
defaultFrom: env("BREVO_FROM_EMAIL"),
},
},
},
});📁 .env Example
Add the following entries to your .env file:
BREVO_API_KEY=your_brevo_api_key_here
BREVO_SENDER_NAME=4Brains Technologies Pvt Ltd
[email protected]
[email protected]
[email protected]You can get your API key from https://app.brevo.com/
👨💻 Developed by
4Brains Technologies Pvt Ltd
🚀 Where Innovation Meets Precision
📫 [email protected]
📄 License
MIT
