diff --git a/app/Utils/TemplateEngine.php b/app/Utils/TemplateEngine.php index ccb94b0dc641..f3e7468747bc 100644 --- a/app/Utils/TemplateEngine.php +++ b/app/Utils/TemplateEngine.php @@ -119,12 +119,6 @@ class TemplateEngine $this->body = EmailTemplateDefaults::getDefaultTemplate($this->template, $this->settings_entity->locale()); } } - - $converter = new CommonMarkConverter([ - 'allow_unsafe_links' => false, - ]); - - $this->body = $converter->convertToHtml($this->body); return $this; }