provider-email-aws-ses
v4.0.0
Published
AWS SES provider for strapi email
Downloads
28
Readme
provider-email-aws-ses
Installation
# using yarn
yarn add strapi-provider-email-aws-ses
# using npm
npm install strapi-provider-email-aws-ses --saveExample
Path - config/plugins.js
module.exports = ({ env }) => ({
// ...
email: {
config: {
provider: 'aws-ses',
providerOptions: {
key: env('AWS_SES_KEY'),
secret: env('AWS_SES_SECRET'),
region: 'us-east-1',
},
settings: {
defaultFrom: '[email protected]',
defaultReplyTo: '[email protected]',
},
}
},
// ...
});