Application Integration
Amazon SES
Scalable, low-cost transactional and marketing email.
Official docsOverview
Simple Email Service sends/receives email with deliverability tools, DKIM, configuration sets and event publishing.
When to use it
- App transactional email (verification, receipts)
- Bulk notifications
- Inbound email processing
Setup
- Verify your domain (DKIM + SPF DNS records).
- Request production access (sandbox limits to verified recipients).
- Create a configuration set and event destination (CloudWatch / Firehose).
How to use
Send
aws ses send-email --from qa@x.com --to t@x.com --subject 'hi' --text 'body'QA use cases
- Verify password-reset flow by routing SES inbound → S3 → Lambda → assert email content in tests.
