diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-06-07 22:17:50 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-06-07 22:17:50 -0400 |
commit | e22da9d32addefa8d739171febcf6f6d0c06ba7b (patch) | |
tree | affb9f8729ac9d4f07dd7f24dff39bfaa9cda0ff /app/Model/Webhook.php | |
parent | 4f32352fe62e47ad5ea760eb00493bdc061b2407 (diff) |
Add Mailgun API as mail transport
Diffstat (limited to 'app/Model/Webhook.php')
-rw-r--r-- | app/Model/Webhook.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Model/Webhook.php b/app/Model/Webhook.php index 8c270fb6..e3af37f7 100644 --- a/app/Model/Webhook.php +++ b/app/Model/Webhook.php @@ -30,7 +30,7 @@ class Webhook extends Base $url .= '?token='.$token; } - return $this->httpClient->post($url, $values); + return $this->httpClient->postJson($url, $values); } } } |