Software Engineer
Software Engineer

Reputation: 37

How to send email by gmail in Laravel

MAIL_DRIVER=smtp
MAIL_HOST=smtp.gmail.com
MAIL_PORT=587
[email protected]
MAIL_PASSWORD=********
MAIL_ENCRYPTION=tls
[email protected]
MAIL_FROM_NAME="${APP_NAME}"

MY ERROR--> Swift_TransportException Expected response code 250 but got code "530", with message "530 5.7.1 Authentication required

how to send gmail email in larave, im very tired in this error, please help me

this is my .env file my env file

this is may error image email error

Upvotes: 0

Views: 612

Answers (1)

Foued MOUSSI
Foued MOUSSI

Reputation: 4813

Gmail SMTP Settings

MAIL_DRIVER=smtp
MAIL_HOST=smtp.googlemail.com
MAIL_PORT=465
MAIL_USERNAME=ENTER_YOUR_EMAIL_ADDRESS(GMAIL)
MAIL_PASSWORD=ENTER_YOUR_GMAIL_PASSWORD
MAIL_ENCRYPTION=ssl

You must configure your Google Account

Login to your Google Email Account and click on Google Account Button. This button is display when you click on the profile picture in your Gmail Dashboard as shown.

Once you are on My Account Page then click on Security and scroll down to the bottom and you will find ‘Less secure app access’ settings. Click on the radio button to set it ON.

enter image description here

Complete reading here

Upvotes: 1

Related Questions