Skip to content

Metacrafters/strapi-provider-email-aws-ses-sdk

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

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 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',
    },
  },
  // ...
});

About

Strapi email provider for Amazon SES which uses the AWS SDK.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%