Re: EMAIL_BACKEND doesn't works with Amazon SES!?

2020-11-12 Thread ling...@gmail.com
This exception is raised when the server unexpectedly disconnects, or when an attempt is made to use the python mail SMTP instance before connecting it to a server. Clients sending outgoing mail should connect on port 587 and use starttls. To

Re: EMAIL_BACKEND doesn't works with Amazon SES!?

2016-03-29 Thread Fred Stluka
Good explanation, Michal! Thanks! --Fred Fred Stluka -- mailto:f...@bristle.com -- http://bristle.com/~fred/ Bristle Software, Inc -- http://bristle.com -- Glad to be of service! Open Source: Without walls and fences, we

Re: EMAIL_BACKEND doesn't works with Amazon SES!?

2016-03-29 Thread Neto
Thanks guys, 587 worked Em segunda-feira, 28 de março de 2016 21:56:12 UTC-3, Neto escreveu: > > I'm trying to send emails with Amazon SES, but when I use default > EMAIL_BACKEND raise error: > > Config: > > EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend' # this is > default >

Re: EMAIL_BACKEND doesn't works with Amazon SES!?

2016-03-29 Thread Michal Petrucha
On Mon, Mar 28, 2016 at 05:56:12PM -0700, Neto wrote: > I'm trying to send emails with Amazon SES, but when I use default > EMAIL_BACKEND raise error: > > Config: > > EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend' # this is > default > EMAIL_HOST = 'email-smtp...amazonaws.com' >

Re: EMAIL_BACKEND doesn't works with Amazon SES!?

2016-03-29 Thread Raffaele Salmaso
On Tue, Mar 29, 2016 at 2:56 AM, Neto wrote: > > EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend' # this is > default > EMAIL_HOST = 'email-smtp...amazonaws.com' > EMAIL_PORT = 465 > EMAIL_HOST_USER = '...' > EMAIL_HOST_PASSWORD = '...' > EMAIL_USE_TLS =

EMAIL_BACKEND doesn't works with Amazon SES!?

2016-03-28 Thread Neto
I'm trying to send emails with Amazon SES, but when I use default EMAIL_BACKEND raise error: Config: EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend' # this is default EMAIL_HOST = 'email-smtp...amazonaws.com' EMAIL_PORT = 465 EMAIL_HOST_USER = '...' EMAIL_HOST_PASSWORD = '...'