4.0.0 • Published 2 years ago

strapi-provider-email-sendinblue v4.0.0

Weekly downloads
44
License
MIT
Repository
github
Last release
2 years ago

strapi-provider-email-sendinblue

npm version npm downloads

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', 'contact@example.com'),
        sendinblue_default_from: env('SIB_DEFAULT_FROM', 'no-reply@example.com'),
        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', 'contact@example.com'),
      sendinblue_default_from: env('SIB_DEFAULT_FROM', 'no-reply@example.com'),
      sendinblue_default_from_name: env('SIB_DEFAULT_FROM_NAME', 'Sender Name'),
    },
  },
});

Resources

Links

4.0.0

2 years ago

1.0.6

3 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago