From af9796faf7557f0c95c8e98fcc02b0cfc399e98d Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Fri, 22 May 2026 20:10:56 +0000 Subject: [PATCH] Fix regression on email templates show text Didn't realize there are still valid reasons and people that like text based email. For this reason filtering out text based email type has been removed. --- core/email_templates/email_templates.php | 1 - 1 file changed, 1 deletion(-) diff --git a/core/email_templates/email_templates.php b/core/email_templates/email_templates.php index fb1eceee8..28d447ed3 100644 --- a/core/email_templates/email_templates.php +++ b/core/email_templates/email_templates.php @@ -163,7 +163,6 @@ $sql .= "template_description "; $sql .= "from v_email_templates "; $sql .= "where true "; - $sql .= "and template_type = 'html' "; if (!empty($template_language)) { $sql .= "and template_language = :template_language "; $parameters['template_language'] = $template_language;