Skip to content Skip to sidebar Skip to footer

Django Cannot Send Email

This is the config about email in settings.py. ##--------send email config---------- EMAIL_HOST = 'smtp.sina.com.cn' EMAIL_PORT = 25 EMAIL_HOST_USER = 'example@sina.com' EMAIL_HO

Solution 1:

Try with port no 587.

Check the link below. http://blog.mailgun.com/25-465-587-what-port-should-i-use/

Solution 2:

Most likely it means that your server is blocking\limiting outgoing connections on 25 port, which is happening on some servers.

Post a Comment for "Django Cannot Send Email"