strapi-provider-aws-mailer
v1.0.2
Published
Strapi email provider plugin to send emails through Amazon SES Service
Downloads
6
Readme
strapi-provider-aws-mailer
==========
Strapi email provider plugin to send emails through Amazon SES Service
Installation
npm install strapi-provider-aws-mailer --save
Usage
Path - ./config/plugins.js
email: {
config: {
provider: "strapi-provider-aws-mailer",
providerOptions: {
key: env("SES_USER"),
secret: env("SES_PASSWORD"),
},
settings: {
defaultFrom: "[email protected]",
defaultReplyTo: "[email protected]",
},
},
}