Skip to content

Commit

Permalink
Add options array
Browse files Browse the repository at this point in the history
  • Loading branch information
CyrilMazur committed Sep 9, 2018
1 parent e21b17f commit b37b7ca
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/Illuminate/Mail/TransportManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,10 @@ protected function createSesDriver()
'version' => 'latest', 'service' => 'email',
]);

return new SesTransport(new SesClient(
$this->addSesCredentials($config)
));
return new SesTransport(
new SesClient($this->addSesCredentials($config)),
$config['options'] ?? []
);
}

/**
Expand Down

0 comments on commit b37b7ca

Please sign in to comment.