Simple Mandrill plugin for Strapi 4
Simple Mandrill plugin for Strapi 4
npm install strapi-provider-plugin-mandrill
or
yarn add strapi-provider-plugin-mandrill
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 on config/pluggin.ts file the configuration bellow
1 email: {
2 config: {
3 provider: "strapi-provider-plugin-mandrill",
4 providerOptions: {
5 apiKey: process.env.MANDRILL_API_KEY,
6 },
7 settings: {
8 defaultFrom: "contact@email.com",
9 defaultName: 'Test',
10 defaultReplyTo: 'test@email.com',
11 defaultHtml: 'Test',
12 defaultText: 'Test',
13 },
14 },
15 }
npm install strapi-provider-plugin-mandrill
Check out the available plugin resources that will help you to develop your plugin or provider and get it listed on the marketplace.