From cf46cf44041939d18260fafd0ac3a4bcfb85bc9f Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Sat, 12 Sep 2015 18:19:09 -0400 Subject: Update dependencies --- app/Integration/Mailgun.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'app/Integration/Mailgun.php') 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']; -- cgit v1.2.3