I'm trying to use Amazon's new SMTP service for SES with Django 1.3.1 but I'm not having much luck.

I've created my SES SMTP credentials and have this in my settings:

EMAIL_USE_TLS = True
EMAIL_HOST = 'email-smtp.us-east-1.amazonaws.com'
EMAIL_HOST_USER = 'my-smtp-user'
EMAIL_HOST_PASSWORD = 'my-smtp-password'
EMAIL_PORT = 465

Then I try sending a test email (from and to verified email addresses):

from django.core.mail import send_mail

send_mail('Test subject', 'This is the body', 'info@abc.com',['hello@abc.com'], fail_silently=False)

But I get the following error:

SMTPServerDisconnected: Connection unexpectedly closed

I can telnet to the server:

telnet email-smtp.us-east-1.amazonaws.com 465

Any thoughts?

Thanks, G

link|improve this question

2  
Could be related to amazon not supporting start_tls. "The Amazon SES SMTP interface currently requires the Handshake Protocol and does not support STARTTLS. We support both SSL 3.0 and TLS 1.0." See discussion here link – mtnpaul Dec 20 '11 at 23:55
Did you look at this article . – mtnpaul Dec 21 '11 at 0:46
@mtnpaul thanks but this article isn't for SMTP. I specifically wanted to use the SMTP protocol. But it does sound like the issue is related to TLS not being supported, even though they mention it in the console. – GivP Dec 21 '11 at 12:18
feedback

3 Answers

up vote 8 down vote accepted

Thanks everyone for the recommendations but I finally found a much simpler solution that would allow me to use Django's built-in mail classes so I can still get my admin error email reports etc.

Thanks to this little beauty I was able to use SES SMTP without any problems:

https://github.com/bancek/django-smtp-ssl

Download and install (python setup.py install)

Then just change your settings to use this new email backend:

EMAIL_BACKEND = 'django_smtp_ssl.SSLEmailBackend'

The rest of the settings are as per normal:

EMAIL_HOST = 'email-smtp.us-east-1.amazonaws.com'
EMAIL_PORT = 465
EMAIL_HOST_USER = 'my_smtp_username'
EMAIL_HOST_PASSWORD = 'my_smtp_password'
EMAIL_USE_TLS = True

Nice.

G

link|improve this answer
Since your using a SSL backend, do you really need to set EMAIL_USE_TLS = True ? – mtnpaul Dec 28 '11 at 19:08
Haven't tried, to be honest. Will test. – GivP Dec 29 '11 at 0:04
Setting EMAIL_USE_TLS = False doesn't make a difference. – bobc Feb 2 at 6:15
feedback

After long long searching and trying I found:

Instead using:

 s = smtplib.SMTP(host, port)
 s.starttls()
 s.login(user, password)

For AmazonSES SMTP must be:

 s = smtplib.SMTP_SSL(host, port)
 s.login(user, password)

So, I think, for django you can either fix django code, or write you own simple email backend [based on default django email backend].

UPD:

I found another solution (but not tested it by myself): use SSLEmailBackend from link below

// settings.py
EMAIL_BACKEND = 'backends.smtp.SSLEmailBackend'

(From here: Mysterious issue with Django + uWSGI + send email )

UPD2:

AmazonSES supports STARTTLS from now :)

Amazon SES supports expanded attachment types, VERP, and STARTTLS for SMTP

(from Amazon Newsletter)

link|improve this answer
Not sure what that backend it but it doesn't come with Django out of the box. See my similar solution below. – GivP Dec 22 '11 at 9:23
It looks nice! ) – vsvasya Dec 22 '11 at 13:10
(Also, I forgot to mention beautiful django-ses app :)) – vsvasya Dec 22 '11 at 13:12
feedback

http://aws.amazon.com/articles/2405502737055650

core python functionality sample

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.