Hello guys,
I get the following error when trying to send mails to users after a 
successful registration on my app
"raise SMTPConnectError(code, msg)

Exception Type: SMTPConnectError at /register/
Exception Value: (421, b'Server busy, too many connections')

"
Any idea on how to go about this
my email settings configuration looks like this
EMAIL_BACKEND =  'django.core.mail.backends.smtp.EmailBackend'
EMAIL_HOST = 'smtp.gmail.com'
EMAIL_PORT= 587
EMAIL_HOST_USER = os.environ.get('EMAIL_USER')
EMAIL_HOST_PASSWORD= os.environ.get('EMAIL_PASS')
EMAIL_USE_TLS= True

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/9c764b01-a496-44ef-b388-9d0dcb4a1863n%40googlegroups.com.

Reply via email to