diff options
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'; } /** |