I send HTML report emails to customers, which display nicely on most email clients. When displayed in Outlook 2013, the following message is sometimes displayed:
if there are problems with how this message is displayed, click here to view it in a web browser.
I would like to get rid of this message. This post suggests removing all thead
and tbody
tags from the message (there aren't any in my HTML code) and replace inline CSS with embedded CSS, which I can't do because other mail clients have problems with non-inline CSS.
Are there any known ways to prevent this message from showing?
<span style="padding: 0px;"></span>
at the bottom of the HTML email body. – Familiarize