@ventsislavnikolov/strapi-provider-email-sendinblue
v4.0.1
Published
Sendinblue provider for strapi email
Downloads
5
Maintainers
Readme
strapi-provider-email-sendinblue
Non-Official SendInBlue provider for Strapi Email
Historic
This plugin was develop originally by @eddybordi, but due to inactivity, I've ask him to fork the project, contribute and maintain it for all next Strapi release. Thanks to him :)
Installation
Install the package from your app root directory
- With npm
npm install strapi-provider-email-sendinblue --save
- Or yarn
yarn add strapi-provider-email-sendinblue
Configuration
Edit config/plugins.js
file
Example configuration for Strapi V4 :
module.exports = ({env}) => ({
email: {
config: {
provider: 'strapi-provider-email-sendinblue',
providerOptions: {
sendinblue_api_key: env('SIB_API_KEY', 'xkeysib-0987654321-abcdef'),
sendinblue_default_replyto: env('SIB_DEFAULT_REPLY_TO', '[email protected]'),
sendinblue_default_from: env('SIB_DEFAULT_FROM', '[email protected]'),
sendinblue_default_from_name: env('SIB_DEFAULT_FROM_NAME', 'Sender Name'),
},
},
},
});
Example configuration for Strapi V3 :
module.exports = ({env}) => ({
email: {
provider: 'sendinblue',
providerOptions: {
sendinblue_api_key: env('SIB_API_KEY', 'xkeysib-0987654321-abcdef'),
sendinblue_default_replyto: env('SIB_DEFAULT_REPLY_TO', '[email protected]'),
sendinblue_default_from: env('SIB_DEFAULT_FROM', '[email protected]'),
sendinblue_default_from_name: env('SIB_DEFAULT_FROM_NAME', 'Sender Name'),
},
},
});