[Answered ]-Django-registration module dont send email

2👍

You forget to add

EMAIL_HOST = 'smtp.mysite.com' 

to send email.

0👍

if use cpanel you must first create a email account and then go to Set Up Mail Clien and in Non-SSL Settings section write the outgoing server and port in settings.py

 EMAIL_BACKEND ='django.core.mail.backends.smtp.EmailBackend'
EMAIL_HOST = 'outgoingserver'
EMAIL_PORT = SMTP_port
DEFAULT_FROM_EMAIL = 'your email account'
EMAIL_HOST_USER = 'your email account'
EMAIL_HOST_PASSWORD = 'email password'
EMAIL_USE_TLS = True

Leave a comment