Is there a simpler way to specify the font-family in Outlook 2013 email coding? I've discovered that when adding it inline like this, the font-family is often ignored:
<span style="font-family: Helvetica, Arial, sans-serif;">Text</span>
I've also found success with this method:
<span><font face="Helvetica, Arial, sans-serif">Text</font></span>
However, this can be tedious as every text area requires the addition of the <font> tag. Wrapping multiple elements in the tag is ineffective. Is there a way to set the font once and not have to worry about it?