diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-06-06 14:10:31 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-06-06 14:10:31 -0400 |
commit | 9d9e3afba2054bfa23ba6f019b7c8885c2d8415e (patch) | |
tree | 1113e318c3d5e15bed48480f90f5498347343783 /app/Controller/Webhook.php | |
parent | c87e1fbc33416e7b2f59b98c2ffed173958b3146 (diff) |
Improve email sending system and add Postmark as mail transport
Diffstat (limited to 'app/Controller/Webhook.php')
-rw-r--r-- | app/Controller/Webhook.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controller/Webhook.php b/app/Controller/Webhook.php index c79b4ed6..ddbf7d62 100644 --- a/app/Controller/Webhook.php +++ b/app/Controller/Webhook.php @@ -112,7 +112,7 @@ class Webhook extends Base $this->response->text('Not Authorized', 401); } - echo $this->postmarkWebhook->parsePayload($this->request->getJson() ?: array()) ? 'PARSED' : 'IGNORED'; + echo $this->postmark->receiveEmail($this->request->getJson() ?: array()) ? 'PARSED' : 'IGNORED'; } /** |