-
Notifications
You must be signed in to change notification settings - Fork 2
Email Service Setup
Yinan Zhou edited this page Dec 8, 2025
·
1 revision
AWS SES (Simple Email Service) via Django SMTP backend.
Set these environment variables in .env file:
EMAIL_HOST=email-smtp.REGION.amazonaws.com
EMAIL_PORT=587
EMAIL_HOST_USER=YOUR_SES_SMTP_USERNAME
EMAIL_HOST_PASSWORD=YOUR_SES_SMTP_PASSWORD
DEFAULT_FROM_EMAIL="UMIL <**@**.linkedmusic.ca>"-
SES SMTP Endpoint: Replace
REGIONwith AWS region -
SMTP Credentials: Create SMTP credentials in AWS SES Console
- We use the same credentials as Rodan, same for staging and production
- The IAM User used:
ses-smtp-user.20230614-******
-
Verified Email:
linkedmusic.cais verified in SES identity
- Port:
587(TLS) - Backend: Automatically uses SMTP when
EMAIL_HOSTis set, otherwise console backend for development