Home > Back-end >  What's solution for sending emails from python while gmail " the less secure apps " i
What's solution for sending emails from python while gmail " the less secure apps " i

Time:06-11

I recently was using smtp library for sending emails from gmail account but recently it stopped working after research I found out the google can not let you enable the less secure app anymore . So is there any workaround this ?

enter image description here

CodePudding user response:

If you want to continue using Gmail SMTP, you can set it up by setting an app password. An app password works like an alternate password for your account. It can only be used by the applications you share it with, so it’s more secure than sharing your primary password.

Here's how you can set it up: https://support.google.com/accounts/answer/185833?hl=en

  • Related