AWS SES email sending plugin for ParoiCMS
AWS SES email sending plugin for ParoiCMS.
This package is part of ParoiCMS.
Add the following to your site configuration:
``json`
{
"plugins": {
"@paroicms/send-mail-aws-ses-plugin": {
"disabled": false,
"from": "noreply@example.com",
"awsAccessKeyId": "your-aws-access-key-id",
"awsSecretAccessKey": "your-aws-secret-access-key",
"awsRegion": "us-east-1"
}
}
}
- disabled (boolean, optional): Whether to disable the plugin. Default: falsefrom
- (string, required): The email address to send emails fromawsAccessKeyId
- (string, required): AWS access key ID for SESawsSecretAccessKey
- (string, required): AWS secret access key for SESawsRegion` (string, required): AWS region for SES service
-
Released under the MIT license.