4.0.0 • Published 2 years ago

provider-email-aws-ses v4.0.0

Weekly downloads
-
License
SEE LICENSE IN LI...
Repository
github
Last release
2 years ago

provider-email-aws-ses

Installation

# using yarn
yarn add strapi-provider-email-aws-ses

# using npm
npm install strapi-provider-email-aws-ses --save

Example

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: 'myemail@protonmail.com',
        defaultReplyTo: 'myemail@protonmail.com',
      },
    }
  },
  // ...
});