The desktop webmail of T-online.de content within HTML conditional comments. So the following example:
<!-- <p>This is an HTML comment.</p> -->
<!--[if mso]>
<p>This is a mso conditional comment.</p>
<![endif]-->
<!--[if foobar]>
<p>This is a foobar conditional comment.</p>
<![endif]-->
…is transformed by T-online.de into the following:
<p>This is a mso conditional comment.</p>
<p>This is a foobar conditional comment.</p>

This only affects conditional comments (not regular HTML comments). And this works with any conditional keyword (like foobar in the previous example).
Thanks to @M-J-Robbins for spotting this one yesterday on the #emailgeeks Slack.
The desktop webmail of T-online.de content within HTML conditional comments. So the following example:
…is transformed by T-online.de into the following:
This only affects conditional comments (not regular HTML comments). And this works with any conditional keyword (like
foobarin the previous example).Thanks to @M-J-Robbins for spotting this one yesterday on the #emailgeeks Slack.