jayakusumah / strapi-provider-email-mandrill

Mandrill email provider for Strapi.
MIT License
1 stars 2 forks source link

Mandrill is not working in Strapi 3.0.5 #1

Open iamwebdev opened 4 years ago

iamwebdev commented 4 years ago

Node.js version: 12.6.3 NPM version:6.14.4 Strapi version: 3.0.5 Database:mongodb Operating system:ubunto I have used mandrill email service provider(https://www.npmjs.com/package/strapi-provider-email-mandrill) for sending emails which is listed in supported email service providers list on strapi's official site. I have configured manndrill setting in config/plugins.js On sending email i am getting following error errorr

valdvogel-launchtrip commented 4 years ago

@iamwebdev I faced the same issue using the Strapi version "strapi": "3.1.4". I could make it work using this config: new path file : YOUR_PROJECT/config/plugins.js module.exports = ({ env }) => ( { email: { provider: 'mandrill', providerOptions: { apiKey: env('MANDRILL_API_KEY'), mandrill_default_from_name: 'Jose', mandrill_default_from_email: 'info@company.com' }, }, });