Connection could not be established with host smtp.gmail.com :stream_socket_client(): unable to connect to tcp://smtp.gmail.com:2525 code example

Example 1: Connection could not be established with host smtp.googlemail.com

In Laravel project directory, edit config/mail.php and add the following:
'stream' => [
        'ssl' => [
            'allow_self_signed' => true,
            'verify_peer' => false,
            'verify_peer_name' => false,
        ],
    ]
    
It worked for me.

Fyi, my SMTP settings are:
MAIL_DRIVER=smtp
MAIL_HOST=smtp.gmail.com
MAIL_PORT=465
MAIL_USERNAME=[Full Gmail Address]
MAIL_PASSWORD=[Google App Password obtained after two step verification on Google Account Page]
MAIL_ENCRYPTION=ssl

Example 2: Connection could not be established with host smtp.gmail.com :stream_socket_client(): unable to connect to tcp://smtp.gmail.com:587 (Network is unreachable)

I solved my problem in cpanel using the code:

inside `.env` file change 

	MAIL_DRIVER=smtp 
to
	MAIL_DRIVER=sendmail

Tags:

Misc Example