Created
October 24, 2023 15:07
-
-
Save Sharifur/6d483b5bf265fee3827a2bb56379d361 to your computer and use it in GitHub Desktop.
smtp mail showing send success but not getting the mail, issue in hostgator solved by this code.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//config/mail.php | |
'smtp' => [ | |
'transport' => 'smtp', | |
'host' => env('MAIL_HOST', 'smtp.mailgun.org'), | |
'port' => env('MAIL_PORT', 587), | |
'encryption' => env('MAIL_ENCRYPTION', 'tls'), | |
'username' => env('MAIL_USERNAME'), | |
'password' => env('MAIL_PASSWORD'), | |
'timeout' => null, | |
'local_domain' => env('MAIL_EHLO_DOMAIN',url('/')), | |
], |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment