Re: SMTP Authentification error

2022-05-01 Thread Antonis Christofides
If some emails are emails are disappearing, you may get ideas on how to fix it from https://djangodeployment.com/2017/01/18/why-does-django-not-email-me-the-500-internal-server-error/ On 02/05/2022 07.33, 'Delvin Alexander' via Django users wrote: Improvements! i fixed my settings.py file and n

Re: SMTP Authentification error

2022-05-01 Thread Mohammad Anarul
EMAIL_HOST = smtp.gmail.com EMAIL_HOST_USER = your-email EMAIL_HOST_PASSWORD = your-email-password EMAIL_PORT = 587 EMAIL_USE_TLS = True EMAIL_BACKEND = django.core.mail.backends.smtp.EmailBackend DEFAULT_FROM_EMAIL = your-email On Mon, May 2, 2022 at 10:33 AM 'Delvin Alexander' via Django users <

Re: SMTP Authentification error

2022-05-01 Thread 'Delvin Alexander' via Django users
Improvements! i fixed my settings.py file and now i do not get the error. The only problem is that for my email, i do not get the email notification to reset my password. Any clues to this? On Sunday, May 1, 2022 at 4:08:46 AM UTC-7 Mahendra Yadav wrote: > I Know this solution charges are appli

Re: SMTP Authentification error

2022-05-01 Thread Mahendra
I Know this solution charges are applicable if you want? Mahendra Yadav On Wed, 27 Apr 2022, 11:08 am 'Delvin Alexander' via Django users, < django-users@googlegroups.com> wrote: > Hello everyone, > > May you please assist in informing me on what i need to do to resolve this > issue. > > - *SMTP

Re: SMTP Authentification error

2022-05-01 Thread Hassan Bashir
Hi Dear, Good Afternoon. Dear these settings are used for only email host and password these variables are not valid for db_user or db_password. see the image below. Also make sure you smtp is enabled in that email which email you are using settings.py ok hope got this ? On Sat, Apr 30, 2022 at 12

Re: SMTP Authentification error

2022-04-29 Thread 'Delvin Alexander' via Django users
Good Afternoon, i included the db_user and db_password becasue that was what my environment variable used in my advanced settings. When i debugged i did use both email user and db user and got the same result. Also i tried everyone's answer but still obtained the same result. Is it something i

Re: SMTP Authentification error

2022-04-29 Thread Hassan Bashir
Hi there, EMAIL_BACKEND = 'django.core.mail.backends.*smtp.EmailBackend'* *EMAIL_HOST = 'smtp.gmail.com '* *EMAIL_PORT = 587* *EMAIL_USE_TLS = True* *EMAIL_HOST_USER = os.environ.get('DB_USER')* *EMAIL_HOST_PASSWORD = os.environ.get('DB_PASSWORD')* in this code you just nee

Re: SMTP Authentification error

2022-04-28 Thread Gift Soko
Hi, You need to enable the less secure apps on your google account. following this article : https://devanswers.co/allow-less-secure-apps-access-gmail-account/ On Wednesday, 27 April 2022 at 07:37:53 UTC+2 dcale...@ucdavis.edu wrote: > Hello everyone, > > May you please assist in informing me

Re: SMTP Authentification error

2022-04-28 Thread Antonis Christofides
In my experience, Gmail does not allow (or does not support) using it as a smarthost if all you have is a free account, and even if you get it to work it will eventually cause you headaches. I don't know if this has changed the last few years, but I feel it hasn't. It's much better to use anothe

Re: SMTP Authentification error

2022-04-27 Thread Vishesh Mangla
I meant Gmail api.I was also stuck with Gmail.Also may 31 onwards Gmail will block all third party apps which simply login with email and password. On Thu, 28 Apr 2022, 11:02 Vishesh Mangla, wrote: > > On Thu, 28 Apr 2022, 11:02 Vishesh Mangla, > wrote: > >> Use Google api. >> >> On Thu, 28 Apr

Re: SMTP Authentification error

2022-04-27 Thread Vishesh Mangla
On Thu, 28 Apr 2022, 11:02 Vishesh Mangla, wrote: > Use Google api. > > On Thu, 28 Apr 2022, 10:29 'Delvin Alexander' via Django users, < > django-users@googlegroups.com> wrote: > >> okay i did both but now i am getting this error. Any clue on why? >> >> *SMTPSenderRefused at /password-reset/* >>

Re: SMTP Authentification error

2022-04-27 Thread Vishesh Mangla
Use Google api. On Thu, 28 Apr 2022, 10:29 'Delvin Alexander' via Django users, < django-users@googlegroups.com> wrote: > okay i did both but now i am getting this error. Any clue on why? > > *SMTPSenderRefused at /password-reset/* > > > *(530, b'5.7.0 Authentication Required. Learn more at\n5.7.

RE: SMTP Authentification error

2022-04-27 Thread ngallen4
2022 07:59 To: Django users Subject: Re: SMTP Authentification error okay i did both but now i am getting this error. Any clue on why? SMTPSenderRefused at /password-reset/ (530, b'5.7.0 Authentication Required. Learn more at\n5.7.0 https://support.google.com/mail/?p=Want

Re: SMTP Authentification error

2022-04-27 Thread 'Delvin Alexander' via Django users
okay i did both but now i am getting this error. Any clue on why? *SMTPSenderRefused at /password-reset/* *(530, b'5.7.0 Authentication Required. Learn more at\n5.7.0 https://support.google.com/mail/?p=WantAuthError w137-20020a62828f00b0050d2f9c3409sm14545822pfd.199 - gsmtp', 'webmaster@l

Re: SMTP Authentification error

2022-04-27 Thread 'Delvin Alexander' via Django users
i thought that because i had that as my variable name that i had to call upon that name. Thank you, i will give that a try. On Tuesday, April 26, 2022 at 11:33:20 PM UTC-7 jul.ale...@gmail.com wrote: > Seem pretty clear, you are calling db user and db password instead of > email and email pass

Re: SMTP Authentification error

2022-04-27 Thread Lakshyaraj Dash X-D 25
Check whether you have turned on less secure apps or not. On Wed, Apr 27, 2022, 11:07 'Delvin Alexander' via Django users < django-users@googlegroups.com> wrote: > Hello everyone, > > May you please assist in informing me on what i need to do to resolve this > issue. > > - *SMTPAuthenticationErro

Re: SMTP Authentification error

2022-04-26 Thread Julio Cojom
Seem pretty clear, you are calling db user and db password instead of email and email password, *EMAIL_HOST_USER = os.environ.get('DB_USER')* *EMAIL_HOST_PASSWORD = os.environ.get('DB_PASSWORD')* Regards, Julio Cojom El mar, 26 abr 2022 a las 23:38, 'Delvin Alexander' via Django users (< django

SMTP Authentification error

2022-04-26 Thread 'Delvin Alexander' via Django users
Hello everyone, May you please assist in informing me on what i need to do to resolve this issue. - *SMTPAuthenticationError at /password-reset/* *- (535, b'5.7.8 Username and Password not accepted. Learn more at\n5.7.8 https://support.google.com/mail/?p=BadCredentials j64-20020a62c54300