MB
0
Zimbra showing responsive versions of emails
I've been banging my head on this one for a few hours now. The desktop email client Zimbra interprets media queries as just regular CSS, the way Yahoo! does, so all emails that have media queries are showing up as their mobile versions in the desktop client.
Anyone dealt with this and know a fix? The Zimbra client is free to download and play with, if you're feeling up to it: https://www.zimbra.com/products/zimbra-desktop/index.html
Of course, after taking it to Community, I have figured it out. You can use one of the many fixes for the same situation in Yahoo!:
<style>
@media only screen and (max-device-width: 480px) {
body[zimbra] .responsive {color:#C03 !important}
}
</style>
</head>
<body zimbra="fix">
<span style="color:#000000;" class="responsive">Text</span>
</body>
...So, for your one subscriber who might be using Zimbra, there ya go!