Question
Send email using Gmail, Django, and Mezzanine
I’m trying to send notification emails using Django (1.6.1) and Mezzanine on Ubuntu 14.04. This is in my settings.py:
EMAIL_HOST = 'smtp.gmail.com'
EMAIL_PORT = 587
EMAIL_USE_TLS = True
EMAIL_HOST_USER = 'info@example.com'
EMAIL_HOST_PASSWORD = 'secret'
This returns: [Errno 111] Connection refused
But I can send email from the console like this:
>> from django.core.mail import send_mail
>> send_mail('Subject here', 'Here is the message.', 'from@example.com',
['to@example.com'], fail_silently=False)
It return 1 and I actually got the email. I’ve tried Mandrill as well and got the same results.
After reading various threads, do I need to install Postfix to act as a relay or can I directly access the SMTP servers and email? I’d like to avoid installing Postfix if possible.
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×
On first blush, those settings look correct to me. Have you set up any firewalling on the server? I’d expect a
SMTPAuthenticationError
rather than “Connection refused” if it was being rejected by Google. Is there a full traceback for the error? It’s very strange that it succeeds from the console but not from your app. Could you share a snippet of the actual code in app?