How to to send mail using gmail in Laravel?



PHP Snippet 1:

MAIL_DRIVER=smtp
MAIL_HOST=smtp.gmail.com
MAIL_PORT=587
[email protected]
MAIL_PASSWORD=apppassword
MAIL_ENCRYPTION=tls

PHP Snippet 2:

MAIL_DRIVER=sendmail
MAIL_HOST=smtp.gmail.com
MAIL_PORT=587
[email protected]
MAIL_PASSWORD=apppassword
MAIL_ENCRYPTION=tls

PHP Snippet 3:

MAIL_DRIVER=smtp
MAIL_HOST=smtp.gmail.com
MAIL_PORT=465
MAIL_USERNAME=<your_email_address>
MAIL_PASSWORD=<your_gmail_app_password_>
MAIL_ENCRYPTION=ssl

PHP Snippet 4:

php artisan config:cache

PHP Snippet 5:

MAIL_MAILER=smtp    
MAIL_HOST=smtp.gmail.com   
MAIL_PORT=587      
MAIL_USERNAME=yourgmailaddress
MAIL_PASSWORD=yourgmailpassword
MAIL_ENCRYPTION=tls

PHP Snippet 6:

php artisan config:cache

PHP Snippet 7:

sudo service apache2 restart

PHP Snippet 8:

MAIL_DRIVER=sendmail

PHP Snippet 9:

MAIL_DRIVER=smtp
MAIL_HOST=smtp.googlemail.com
MAIL_PORT=465
[email protected]
MAIL_PASSWORD=app_password
MAIL_ENCRYPTION=ssl

PHP Snippet 10:

dd(Config::get('mail'));

PHP Snippet 11:

Config::set('mail.username', 'yourusername');
Config::set('mail.password', 'yourpassword');

PHP Snippet 12:

MAIL_DRIVER=smtp
MAIL_HOST=smtp.gmail.com
MAIL_PORT=465
[email protected]
MAIL_PASSWORD=passowrd
MAIL_ENCRYPTION=ssl

PHP Snippet 13:

[email protected]
MAIL_FROM_NAME="[email protected]"

PHP Snippet 14:

php artisan config:cache

PHP Snippet 15:

MAIL_DRIVER=sendmail
MAIL_HOST=smtp.gmail.com
MAIL_PORT=587
[email protected]
MAIL_PASSWORD=apppassword
MAIL_ENCRYPTION=tls