Skip to content

Commit

Permalink
Merge pull request #2723 from CachetHQ/enable-amazon-ses
Browse files Browse the repository at this point in the history
Enable Amazon SES during setup
  • Loading branch information
jbrooksuk committed Sep 15, 2017
2 parents a2ee92b + f605554 commit 5d92e9b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions app/Http/Controllers/SetupController.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,12 @@ class SetupController extends Controller
* @var string[]
*/
protected $mailDrivers = [
'smtp' => 'SMTP',
'mail' => 'Mail',
'sendmail' => 'Sendmail',
'mailgun' => 'Mailgun',
'mandrill' => 'Mandrill',
// 'ses' => 'Amazon SES', this will be available only if aws/aws-sdk-php is installed
'smtp' => 'SMTP',
'mail' => 'Mail',
'sendmail' => 'Sendmail',
'mailgun' => 'Mailgun',
'mandrill' => 'Mandrill',
'ses' => 'Amazon SES',
'sparkpost' => 'SparkPost',
'log' => 'Log (Testing)',
];
Expand Down

0 comments on commit 5d92e9b

Please sign in to comment.