Skip to content

Commit

Permalink
[5.2] Add stream_options to config (#13715)
Browse files Browse the repository at this point in the history
* Add stream_options to config

* Style: remove spaces from line
  • Loading branch information
splitice authored and taylorotwell committed May 26, 2016
1 parent 0aea6b0 commit 891bfc8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Illuminate/Mail/TransportManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ protected function createSmtpDriver()
$transport->setPassword($config['password']);
}

if (isset($config['stream_options'])) {
$transport->setStreamOptions($config['stream_options']);
}

return $transport;
}

Expand Down

0 comments on commit 891bfc8

Please sign in to comment.