Add support for Postmark mail transport configuration

This commit is contained in:
Ben Thomson 2020-01-23 12:28:17 +08:00
parent 26944a5f68
commit 6aeb079f8b
2 changed files with 5 additions and 1 deletions

View File

@ -12,7 +12,7 @@ return [
| your application here. By default, Laravel is setup for SMTP mail. | your application here. By default, Laravel is setup for SMTP mail.
| |
| Supported: "smtp", "sendmail", "mailgun", "mandrill", "ses", | Supported: "smtp", "sendmail", "mailgun", "mandrill", "ses",
| "sparkpost", "log", "array" | "postmark", "sparkpost", "log", "array"
| |
*/ */

View File

@ -24,6 +24,10 @@ return [
'secret' => '', 'secret' => '',
], ],
'postmark' => [
'token' => '',
],
'ses' => [ 'ses' => [
'key' => '', 'key' => '',
'secret' => '', 'secret' => '',