strapi-provider-plugin-mandrill-template
v1.0.2
Published
Mandrill provider for strapi email with template
Downloads
62
Readme
Strapi Mandrill plugin
Mandrill plugin for Strapi 4 with support template
Installation
npm install strapi-provider-plugin-mandrill-template
or
yarn add strapi-provider-plugin-mandrill-template
Dependencies
We are using @mailchimp/mailchimp_transactional
package.
So for all send message we'll use this post: https://mailchimp.com/developer/transactional/api/messages/
Add Pluggin
Add on config/plugins.js file the configuration bellow
email: {
config: {
provider: "strapi-provider-plugin-mandrill-template",
providerOptions: {
apiKey: env('MANDRILL_API_KEY'),
},
settings: {
defaultFrom: env('MANDRILL_FROM_EMAIL'),
defaultName: env('MANDRILL_FROM_NAME'),
defaultReplyTo: env('MANDRILL_FROM_EMAIL')
},
},
}