KarimHachicha
KarimHachicha

Reputation: 181

SMTP Gmail in Laravel

my app used to be working fine . I can send email through my app using config in my laravel env file .

Later this week, the app won't send any email . I tried looking for the reason and I found that Google stopped or changed the way it should be.

I tried the following in my env :

MAIL_MAILER=smtp
MAIL_HOST=smtp.googlemail.com
MAIL_PORT=587
[email protected]
MAIL_PASSWORD=xxxxxx
MAIL_ENCRYPTION=tls
MAIL_FROM_NAME=xxxxx

The solution I tried is this HERE

Upvotes: 1

Views: 444

Answers (1)

KarimHachicha
KarimHachicha

Reputation: 181

I found the solution . You have to activate Two-Factor Auth. Then you can generate a new App Password . Place the generated password in the env file inside double quotes "generatedpassword"

Upvotes: 1

Related Questions