I am generating emails in my application and want to ensure that the alt text for my images is displayed in GMail on both desktop and mobile platforms.
I followed a bunch of online advice and made sure to specify both width and height attributes for my tags, and I am able to see alt text fine in multiple browsers on the desktop as well as the iOS GMail application.
I know about issues where the alt text is too long to display in the width of the image, as well.
However, I can't see the alt text on GMail on an Android phone. What's more frustrating is that at one point, I was able to see it, but that was several iterations ago.
Here's an example image:
<img src="/images/print.png" height="24" width="75" alt="Print" title="Print"/>
that fails.
Any help would be appreciated.