From da5d3d84fe5953470c1c4062feb9a44fbd010103 Mon Sep 17 00:00:00 2001 From: Davide Bellini Date: Wed, 2 Mar 2016 01:04:24 +0100 Subject: [PATCH] Added SparkPost config --- config/mail.php | 3 ++- config/services.php | 4 ++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/config/mail.php b/config/mail.php index cb783c90..b14b4156 100644 --- a/config/mail.php +++ b/config/mail.php @@ -11,7 +11,8 @@ | sending of e-mail. You may specify which one you're using throughout | your application here. By default, Laravel is setup for SMTP mail. | - | Supported: "smtp", "mail", "sendmail", "mailgun", "mandrill", "ses", "log" + | Supported: "smtp", "mail", "sendmail", "mailgun", "mandrill", "ses", + | "log", "sparkpost" | */ diff --git a/config/services.php b/config/services.php index 95a58832..035aca14 100644 --- a/config/services.php +++ b/config/services.php @@ -23,6 +23,10 @@ 'secret' => env('MANDRILL_SECRET'), ], + 'sparkpost' => [ + 'secret' => env('SPARKPOST_SECRET'), + ], + 'ses' => [ 'key' => env('SES_KEY'), 'secret' => env('SES_SECRET'),