Supprimer l'adresse soulignant le formatage de Gmail

Gmail will/can auto-detect and underline the address copy in emails. 
To remove the underline, wrap the copy in a span and add a class.

!!!Using in-line styles of the same values will not work for gmail!!!

<span class="contact-info-no-blue">1234 Main St.</span>

<style>
  .contact-info-no-blue {
    color: inherit !important;
    text-decoration: none !important;
  }
</style>
CodeBaron