Self-Hosting
AWS SES Setup
Configure email delivery
1. Create IAM User
- Go to IAM Console → Users → Create user
- Name:
plunk-ses - Attach a custom policy with required permissions (see below)
- Create access keys → Save credentials
Required IAM Policy
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"ses:SetIdentityMailFromDomain",
"ses:GetIdentityDkimAttributes",
"ses:SendRawEmail",
"ses:GetIdentityVerificationAttributes",
"ses:VerifyDomainDkim",
"ses:ListIdentities",
"ses:SetIdentityFeedbackForwardingEnabled"
],
"Resource": "*"
}
]
}2. Create SNS Topic
- Go to SNS Console → Topics → Create topic
- Type: Standard
- Name:
plunk-ses-events - Create topic
- Create subscription:
- Protocol: HTTPS
- Endpoint:
https://api.yourdomain.com/webhooks/sns
- Plunk automatically confirms the subscription. If it fails, check your logs for the confirmation URL.
3. Create Configuration Sets
Tracking Configuration Set
- SES Console → Configuration sets → Create set
- Name:
plunk-tracking - Add event destination:
- Name:
sns-events - Event types: Sends, Deliveries, Opens, Clicks, Bounces, Complaints
- Destination: SNS → Select
plunk-ses-eventstopic
- Name:
No-Tracking Configuration Set
- Create another set named
plunk-no-tracking - Add event destination with only: Sends, Deliveries, Bounces, Complaints
4. Configure Environment
AWS_SES_REGION="us-east-1"
AWS_SES_ACCESS_KEY_ID="your-access-key"
AWS_SES_SECRET_ACCESS_KEY="your-secret-key"
SES_CONFIGURATION_SET="plunk-tracking"
SES_CONFIGURATION_SET_NO_TRACKING="plunk-no-tracking"5. Add Your Domain in Plunk
Once you have configured AWS SES with the above settings, you can add and verify your domain directly through the Plunk dashboard. Plunk will handle the domain verification and DKIM setup with AWS SES automatically and show you the right records to add to your DNS.