An email provider for Strapi email plugin which supports mail through AWS SES, using the AWS SDK.
You need to have the following installed in your Strapi project:
strapi-plugin-email
aws-sdk
# using yarn
yarn add strapi-provider-email-aws-ses-sdk
# using npm
npm install strapi-provider-email-aws-ses-sdk --save
Variable | Type | Description | Required | Default |
---|---|---|---|---|
provider | string | The name of the provider you use | yes | |
providerOptions | object | Will be directly given to AWS config. Please refer to AWS Config doc for possible options. | yes | |
settings | object | Settings | no | {} |
settings.defaultFrom | string | Default sender mail address | no | undefined |
settings.defaultReplyTo | string | array | Default address or addresses the receiver is asked to reply to | no | undefined |
⚠️ The Shipper Email (or defaultfrom) may also need to be changed in theEmail Templates
tab on the admin panel for emails to send properly
Path - config/plugins.js
module.exports = ({ env }) => ({
// ...
email: {
provider: 'amazon-ses-sdk',
providerOptions: {
region: 'us-east-1',
},
settings: {
defaultFrom: '[email protected]',
defaultReplyTo: '[email protected]',
},
},
// ...
});