From 6aeb079f8bcd2255d5e48935e135a2ec808660aa Mon Sep 17 00:00:00 2001 From: Ben Thomson Date: Thu, 23 Jan 2020 12:28:17 +0800 Subject: [PATCH] Add support for Postmark mail transport configuration --- config/mail.php | 2 +- config/services.php | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/config/mail.php b/config/mail.php index 7c2332d2f..4c471d568 100644 --- a/config/mail.php +++ b/config/mail.php @@ -12,7 +12,7 @@ return [ | your application here. By default, Laravel is setup for SMTP mail. | | Supported: "smtp", "sendmail", "mailgun", "mandrill", "ses", - | "sparkpost", "log", "array" + | "postmark", "sparkpost", "log", "array" | */ diff --git a/config/services.php b/config/services.php index c2d453065..d53643b03 100644 --- a/config/services.php +++ b/config/services.php @@ -24,6 +24,10 @@ return [ 'secret' => '', ], + 'postmark' => [ + 'token' => '', + ], + 'ses' => [ 'key' => '', 'secret' => '',