smtp-auth

SMTPAuthenticationError at /password-reset/

SMTPAuthenticationError at /password-reset/ Question: I am new in Django. I am trying to add a feature in my project that enables user to reset his password through given email. These configurations are in development and not production. This is my configuration in settings.py EMAIL_BACKEND = ‘django.core.mail.backends.smtp.EmailBackend’ EMAIL_HOST = ‘smtp.gmail.com’ EMAIL_PORT = 587 EMAIL_USE_TLS = True …

Total answers: 3

Django SMTPAuthenticationError

Django SMTPAuthenticationError Question: I am new in django and developing a web application using django. I have successfully set the Signup functionality using Userena in my web application and can Register as a user with Verification Email. I can show you my SMTP settings in my settings.py file EMAIL_BACKEND = ‘django.core.mail.backends.smtp.EmailBackend’ EMAIL_USE_TLS = True EMAIL_HOST …

Total answers: 16

How to send an email with Gmail as provider using Python?

How to send an email with Gmail as provider using Python? Question: I am trying to send email (Gmail) using python, but I am getting following error. Traceback (most recent call last): File "emailSend.py", line 14, in <module> server.login(username,password) File "/usr/lib/python2.5/smtplib.py", line 554, in login raise SMTPException("SMTP AUTH extension not supported by server.") smtplib.SMTPException: SMTP …

Total answers: 16