Question
SMTPServerDisconnected at /accounts/send_email Connection unexpectedly closed
I am currently experiencing this struggle. I did the following code:
EMAIL_HOST = 'smtp.gmail.com'
EMAIL_PORT = 587
EMAIL_HOST_USER = 'xxxxxxxx@gmail.com'
EMAIL_HOST_PASSWORD = os.environ.get('EMAIL_PASSWORD')
EMAIL_USE_TLS = True
As for ‘EMAILPASSWORD’ - I already set the EMAILPASSWORD environment variable in the shell that’s running runserver. I kept ending up receiving the SMTP error below:
smtplib.SMTPServerDisconnected: Connection unexpectedly closed
when I tried to run my Django - sending email using gmail. Am I missing something? Your help would be so much appreciated!
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.
×