I've created HTML mailers before, but I just cannot figure out how to remove the text-decoration from a link using inline styles for the Gmail/Yahoo clients. I am getting the link colors the way I want them, but gmail is inserting that ugly blue line under every link. I have tried
<a href="link" target="_blank" style="color:red;text-decoration:none">link</a>
And
<a href="link" target="_blank" style="color:red;text-decoration:none"><span style="text-decoration:none">link</span></a>
I am using the F12 tools to inspect the email, and the inline styles are completely blown away by the email client and don't appear. I have a very basic template with no overriding properties - am I missing something that I need for Gmail?