Serverless plugin to run aws-ses-v2-local
Supports the AWS SES API v1 and v2, and Serverless Framework v2 and v3
npm install --save-dev serverless-offline-ses-v2
Add it to your list of plugins, and optinally custom config
serverless.yaml:
plugins:
- serverless-offline
- serverless-offline-ses-v2
custom:
serverless-offline-ses-v2:
port: 8005
serverless.js / serverless.ts:
export default {
plugins: [
"serverless-offline",
"serverless-offline-ses-v2",
],
custom: {
'serverless-offline-ses-v2': {
port: 8005,
}
}
}
Use serverless offline start
instead of serverless offline
, if you aren't already. This is necessary for serverless-offline to fire off init
and end
lifecycle hooks so that we can start and stop the aws-ses-v2-local server correctly.
Pull requests are welcomed on GitHub! To get started:
- Install Git and Node.js
- Clone the repository
- Install dependencies with
npm install
- Run
npm run test
to run tests with Jest - Build with
npm run build
Versions follow the semantic versioning spec.
To release:
- Use
npm version <major | minor | patch>
to bump the version - Run
git push --follow-tags
to push with tags - Wait for GitHub Actions to publish to the NPM registry.