Created
April 26, 2017 06:35
-
-
Save ssatz/7a8531c4ba7a7c4f851a5c7ed5640f23 to your computer and use it in GitHub Desktop.
Disable SSL Certificate on Laravel Mail(Swift Transporter)
This file contains hidden or 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
'stream' => [ | |
'ssl' => [ | |
'allow_self_signed' => true, | |
'verify_peer' => false, | |
'verify_peer_name' => false, | |
], | |
], |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
add the above config in mail.php file.