Um bei Outlook die gewünschte Linkfarbe und text-decoration zu erreichen kann folgende Lösung verwendet werden:


<!-- Optionale Style -->


<!--[if gte mso 9]>
<style type="text/css">
    .mso-font-fix-arial { font-family: Arial, sans-serif;}
    .mso-font-fix-georgia { font-family: Georgia, sans-serif;}
    .mso-font-fix-tahoma { font-family: Tahoma, sans-serif;}
    .mso-font-fix-times_new_roman { font-family: 'Times New Roman', sans-serif;}
    .mso-font-fix-trebuchet_ms { font-family: 'Trebuchet MS', sans-serif;}
    .mso-font-fix-verdana { font-family: Verdana, sans-serif;}
</style>
<![endif]-->



<a href="http://www.google.de" style="text-decoration: none !important;">


    <span style="font-family: Helvetica, Helvetica Neue, Arial; font-size: 28px; line-height: 28px; color: #ffffff; text-decoration: none;"> 


        <!-- Wird benötigt um die Linkfarbe bei Outlook zu definieren, sonst wird sie überschrieben -->

        <font color="#ffffff" style="color: #ffffff !important; text-decoration: none !important;">


            <!-- Optionaler Span -->

            <span class="mso-font-fix-arial">

                 

                Mein Link-Text


            </span>


        </font>


    </span>


</a>



ACHTUNG hier der Clou:


Die span-Tags dürfen / sollen text-decorateion: none; beinhalten. Jedoch ironischerweise nicht den Zusatz "!important;", weil Outlook zum Beispiel in den Versionen 2007 und 2013 den Link dann unterstreicht.