Ich generiere eine HTML-E-Mail, die ein internes Stylesheet verwendet, d. H.
<!doctype html>
<html>
<head>
<style type="text/css">
h2.foo {color: red}
</style>
</head>
<body>
<h2 class="foo">Email content here</foo>
</body>
</html>
In Google Mail werden anscheinend alle Stile im internen Stylesheet ignoriert. Es scheint, dass Google Mail alle Stile außer Inline-Regeln ignoriert, z
<h2 style="color: red">Email content here</foo>
Ist dies meine einzige Option zum Stylen von HTML-E-Mails, wenn sie mit Google Mail angezeigt werden?
<html>
Tag zu verwenden;)