Commit da5d3d84 authored by Davide Bellini's avatar Davide Bellini

Added SparkPost config

parent ec0e06e7
...@@ -11,7 +11,8 @@ return [ ...@@ -11,7 +11,8 @@ return [
| sending of e-mail. You may specify which one you're using throughout | sending of e-mail. You may specify which one you're using throughout
| your application here. By default, Laravel is setup for SMTP mail. | 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"
| |
*/ */
......
...@@ -23,6 +23,10 @@ return [ ...@@ -23,6 +23,10 @@ return [
'secret' => env('MANDRILL_SECRET'), 'secret' => env('MANDRILL_SECRET'),
], ],
'sparkpost' => [
'secret' => env('SPARKPOST_SECRET'),
],
'ses' => [ 'ses' => [
'key' => env('SES_KEY'), 'key' => env('SES_KEY'),
'secret' => env('SES_SECRET'), 'secret' => env('SES_SECRET'),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment