==========
Strapi email provider plugin to send emails through Amazon SES Service
npm install strapi-provider-aws-mailer --save
Path - ./config/plugins.js
email: {
config: {
provider: "strapi-provider-aws-mailer",
providerOptions: {
key: env("SES_USER"),
secret: env("SES_PASSWORD"),
},
settings: {
defaultFrom: "noreply@domain.com",
defaultReplyTo: "noreply@domain.com",
},
},
}