STARTTLS extension not supported by server - Getting this error when trying to send an email through Django and a private email address

前端 未结 5 1040
南笙
南笙 2021-01-12 04:34

I registered a domain and a private email using namecheap.com. I am trying to send an email from this private email. However, I get the error in the title.

In my set

5条回答
  •  生来不讨喜
    2021-01-12 05:38

    You may try SSL instead of TLS by making following changes in settings.py

    EMAIL_USE_SSL = True
    EMAIL_PORT = 465
    

    hope that helps

提交回复
热议问题