Package Exports
- strapi-provider-plugin-mandrill
- strapi-provider-plugin-mandrill/lib/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (strapi-provider-plugin-mandrill) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Strapi app version plugin
Simple Mandrill plugin for Strapi 4
Installation
npm install @guoshiro/strapi-provider-plugin-mandrill
or
yarn add @palmabit/strapi-provider-plugin-mandrill
Add Pluggin
Add on config/pluggin.ts file the configuration bellow
email: {
config: {
provider: "strapi-provider-plugin-mandrill",
providerOptions: {
apiKey: process.env.MANDRILL_API_KEY,
},
settings: {
defaultFrom: "contact@email.com",
},
},
}