Thank you in advance,
I have deployed my Laravel application into Google Cloud Compute Engine
, I used my own Gmail SMTP to send email from the Laravel, it is working well in my local system
and over AWS
too. but not in Google Compute Engine
, I checked it is not showing any error but I am unable to receive any emails from the system
My SMTP
setting is as below in .env
MAIL_MAILER=smtp
MAIL_HOST=smtp.googlemail.com
MAIL_PORT=465
MAIL_USERNAME={USERNAME}
MAIL_PASSWORD={PASSWORD}
MAIL_ENCRYPTION=ssl
MAIL_FROM_ADDRESS={FROM_EMAIL}
MAIL_FROM_NAME="${APP_NAME}"