1.0.0 • Published 3 years ago

strapi-provider-email-aws-ses-sdk v1.0.0

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

strapi-provider-email-aws-ses-sdk

An email provider for Strapi email plugin which supports mail through AWS SES, using the AWS SDK.

Links

Prerequisites

You need to have the following installed in your Strapi project:

  • strapi-plugin-email
  • aws-sdk

Installation

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

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

Configuration

VariableTypeDescriptionRequiredDefault
providerstringThe name of the provider you useyes
providerOptionsobjectWill be directly given to AWS config. Please refer to AWS Config doc for possible options.yes
settingsobjectSettingsno{}
settings.defaultFromstringDefault sender mail addressnoundefined
settings.defaultReplyTostring | arrayDefault address or addresses the receiver is asked to reply tonoundefined

:warning: The Shipper Email (or defaultfrom) may also need to be changed in the Email Templates tab on the admin panel for emails to send properly

Example

Path - config/plugins.js

module.exports = ({ env }) => ({
  // ...
  email: {
    provider: 'amazon-ses-sdk',
    providerOptions: {
      region: 'us-east-1',
    },
    settings: {
      defaultFrom: 'from@mail.com',
      defaultReplyTo: 'reply@mail.com',
    },
  },
  // ...
});