I'm just another ex Webfaction user 🙂
I've set a working <email_user> and <email_address> (webmail sends and receives mail without problems).
In my django settings I've written:
EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
EMAIL_HOST = 'smtp.de.opalstack.com' (my server is based in germany)
EMAIL_HOST_USER = <email_user>
EMAIL_HOST_PASSWORD = <email_user_password>
along with EMAIL_USE_TLS
and EMAIL_USE_SSL
.
Unfortunately when I use send_mail()
something seems to go wrong, and I get back a 502 error. What am I missing?
Thanks for your work, using Opalstack since yesterday, but it looks awesome!