Skip to content

Instantly share code, notes, and snippets.

@atomjoy
Last active September 17, 2024 16:24
Show Gist options
  • Select an option

  • Save atomjoy/06ebf6feb3136e1d1f7ae1e259548fd9 to your computer and use it in GitHub Desktop.

Select an option

Save atomjoy/06ebf6feb3136e1d1f7ae1e259548fd9 to your computer and use it in GitHub Desktop.
Google app passwords and Gmail smtp server settings.

Google, Gmail App Passwords

Login

https://myaccount.google.com

Create pass

https://myaccount.google.com/apppasswords

Gmail Smtp

# Gmail Settings SSL
imap.gmail.com:993
smtp.gmail.com:465

# Gmail TLS Laravel smtp
MAIL_MAILER=smtp
MAIL_HOST=smtp.gmail.com
MAIL_PORT=587
MAIL_USERNAME="youremail@gmail.com"
MAIL_PASSWORD=
MAIL_ENCRYPTION=tls
MAIL_FROM_ADDRESS="youremail@gmail.com"
MAIL_FROM_NAME="${APP_NAME}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment