Skip to content

Commit

Permalink
Added SESSION_TOKEN to SES (#23766)
Browse files Browse the repository at this point in the history
  • Loading branch information
footballencarta authored and taylorotwell committed Apr 9, 2018
1 parent 681438e commit 25e4afc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Illuminate/Mail/TransportManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ protected function createSesDriver()
protected function addSesCredentials(array $config)
{
if ($config['key'] && $config['secret']) {
$config['credentials'] = Arr::only($config, ['key', 'secret']);
$config['credentials'] = Arr::only($config, ['key', 'secret', 'token']);
}

return $config;
Expand Down

0 comments on commit 25e4afc

Please sign in to comment.