Skip to content

Commit

Permalink
Merge pull request #13 from ShoppinPal/ses_fix
Browse files Browse the repository at this point in the history
Remove temporary fallback for ses.senderEmail - especially since it didn't work...
  • Loading branch information
szeber authored Aug 2, 2017
2 parents 73ce865 + 4f04bb1 commit 9d6d9f4
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/Email/Ses.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,7 @@ public function __construct($configName)
],
];

$this->senderEmail = $config->get(
'commonResource.email.' . $configName . '.senderEmail',
// Fallback for legacy config option. Will be removed in a later release!
$config->get('commonResource.ses.' . $configName . '.senderEmail')
);
$this->senderEmail = $config->get('commonResource.email.' . $configName . '.senderEmail');

if ($region) {
$clientConfig['region'] = $region;
Expand Down

0 comments on commit 9d6d9f4

Please sign in to comment.