Django - SMTPAuthenticationError


You need to add SMTP server settings to your settings.py file. Example:
EMAIL_HOST = 'smtp.example.com'
EMAIL_PORT = 25
EMAIL_HOST_USER = 'mailer@example.com'
EMAIL_HOST_PASSWORD = 'password'
EMAIL_USE_TLS = True

No comments:

Post a Comment