Details
-
Type:
Bug
-
Status: In Review
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 5.11.3
-
Component/s: Staff Interface
-
Labels:None
Description
Service Creation email template pulls welcome email content from the Package, from the Text and HTML tabs. However, only the HTML version is included, the content for the Text section is not included.
The issue has to do with the tag in the Service Creation template. Thee tag for the HTML section is
{package.email_html}and this works fine. However, the tag for the text section is
{package.email_text | e} and this does not work. The issue is resolved when removing the filter and using {package.email_text} only.We need to figure out why the filter breaks it and either fix that, or add a migration to update the Service Creation template tag from {package.email_text | e}
to
{package.email_text}