Amazon SES setup with django

EMAIL_BECKEND = 'django_smtp_ssl.SSLEmailBackend' (or EMAIL_BECKEND = 'backends.smtp.SSLEmailBackend')
EMAIL_HOST = 'email-smtp.us-east-1.amazonaws.com'
EMAIL_PORT = 465
EMAIL_HOST_USER = 'SMTP USERNAME'
EMAIL_HOST_PASSWORD = 'SMTP PASSWORD'
EMAIL_USE_TLS = True

Leave a Reply

Your email address will not be published. Required fields are marked *