-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Plugin broke emojis in emails #32
Comments
This seems like a simple fix, Ill have a look at this. Thank you for providing this information. |
To temporarily fix the issue, you can comment out the lines of code causing the problem. The lines in question can be found at the following link: https://github.com/Logicify/mautic-advanced-templates-bundle/blob/675c2577b462dd5f25646c0bc2cb13c500299802/EventListener/EmailSubscriber.php#LL119C1-L120C38 Simply add two forward slashes in front of each line, like so: // $subject = $this->templateProcessor->processTemplate($props['subject'], $lead);
// $event->setSubject($subject); This will temporarily disable those lines of code and allow the program to work as intended. Keep in mind that this is just a temporary fix and after that twig template won't be applied to the subject. |
we are facing the same issue. The "©" symbol in the email body is not displaying correctly and instead appears as |
I have found the solution: Inside the file: add on line 14:
and on line 121 and 126:
I do not know how to add a PR for this change... if someone would be so kind to add the PR to implement the changes :) |
@MarketSmart can you take a look please? |
When plugin is enabled emojis doesn't work correctly in all emails - no matter is there
{% TWIG_BLOCK %}
in it or no.Emojis are visible in email builder and preview 🍀 but in sent emails it shows as
:four_leaf_clover:
Removing plugin fix this.
Mautic v4.4.6
The text was updated successfully, but these errors were encountered: