-
-
Save Propaganistas/9755257e63301bbd5dd0dacbf4eed5ea to your computer and use it in GitHub Desktop.
# Mailhog | |
MAIL_MAILER=smtp | |
MAIL_HOST=0.0.0.0 | |
MAIL_PORT=1025 | |
MAIL_USERNAME=null | |
MAIL_PASSWORD=null | |
MAIL_ENCRYPTION=null |
Thanks!
Merci!!
Thanks !
Thanks!
I had to use
MAIL_ENCRYPTION=tcp
when using Mailhog on macOS without docker.
Thanks a lot
Mailhog
MAIL_DRIVER=smtp
MAIL_HOST=localhost
MAIL_PORT=1025
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
Note for others:
I had problems with MAIL_HOST=0.0.0.0 but MAIL_HOST=localhost (as suggested by MubinSayed) worked. Thanks!
I had to use
MAIL_ENCRYPTION=tcp
when using Mailhog on macOS without docker.
thanks for this, really appreciate it
Thank you for this, much appreciated!
MAIL_DRIVER is for laravel < 7
MAIL_MAILER is for laravel >= 7
MAIL_DRIVER=smtp
MAIL_HOST=127.0.0.1
MAIL_PORT=1025
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
thanks
If you are using Laravel Sail and have mailhog
as a service in your docker-compose.yml file, you should set the MailHog configuration like this:
MAIL_MAILER=smtp
MAIL_HOST=mailhog
MAIL_PORT=1025
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
MAIL_FROM_ADDRESS="[email protected]"
MAIL_FROM_NAME="Your Name"
And, you can check MailHog application UI by visiting this URL: http://localhost:8025
Thanks!
Thanks!
You're using an invalid value (null) for MAIL_ENCRYPTION.
MAIL_ENCRYPTION=null
Use an empty value instead for MAIL_ENCRYPTION:
MAIL_ENCRYPTION=
thanks
Thanks
Thanks for this
This works for me with mailhog and sail
MAIL_MAILER=smtp
MAIL_HOST=mailhog
MAIL_PORT=1025
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=tls
Thanks for this