summaryrefslogtreecommitdiff
path: root/app/Integration/Mailgun.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-09-12 18:19:09 -0400
committerFrederic Guillot <fred@kanboard.net>2015-09-12 18:19:09 -0400
commitcf46cf44041939d18260fafd0ac3a4bcfb85bc9f (patch)
treebf92bfdc9e3bcda049388d1724d0919f0a2e0154 /app/Integration/Mailgun.php
parent0e4e566aa434ea1adaa9e94259877df110fc21f6 (diff)
Update dependencies
Diffstat (limited to 'app/Integration/Mailgun.php')
-rw-r--r--app/Integration/Mailgun.php4
1 files changed, 1 insertions, 3 deletions
diff --git a/app/Integration/Mailgun.php b/app/Integration/Mailgun.php
index 1451b211..076c311a 100644
--- a/app/Integration/Mailgun.php
+++ b/app/Integration/Mailgun.php
@@ -2,7 +2,6 @@
namespace Integration;
-use HTML_To_Markdown;
use Core\Tool;
/**
@@ -76,8 +75,7 @@ class Mailgun extends \Core\Base
// Get the Markdown contents
if (! empty($payload['stripped-html'])) {
- $markdown = new HTML_To_Markdown($payload['stripped-html'], array('strip_tags' => true));
- $description = $markdown->output();
+ $description = $this->htmlConverter->convert($payload['stripped-html']);
}
else if (! empty($payload['stripped-text'])) {
$description = $payload['stripped-text'];