You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem is that the Safety() method meddles with the content and replaces the opening <!-- with <--. This confuses browsers. See also #4081 which show a similar effect.
Some incoming HTML mails put the CSS in the style tag between markers for HTML comments. The intention is to support ancient browsers that do not know about the <style> tag and include the style declaration in the rendered output. In our modern times this is no longer necessary. See also https://stackoverflow.com/questions/4447531/what-is-the-usage-of-comment-notations-in-style-tag and https://www.w3.org/TR/html4/present/styles.html#h-14.5.
The problem is that the
Safety()
method meddles with the content and replaces the opening<!--
with<--
. This confuses browsers. See also #4081 which show a similar effect.Here is an example:
The text was updated successfully, but these errors were encountered: