Skip to content

Instantly share code, notes, and snippets.

@ssatz
Created April 26, 2017 06:35
Show Gist options
  • Save ssatz/7a8531c4ba7a7c4f851a5c7ed5640f23 to your computer and use it in GitHub Desktop.
Save ssatz/7a8531c4ba7a7c4f851a5c7ed5640f23 to your computer and use it in GitHub Desktop.
Disable SSL Certificate on Laravel Mail(Swift Transporter)
'stream' => [
'ssl' => [
'allow_self_signed' => true,
'verify_peer' => false,
'verify_peer_name' => false,
],
],
@ssatz
Copy link
Author

ssatz commented Apr 26, 2017

add the above config in mail.php file.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment