I'm programmatically sending HTML-formatted email, and setting the font as Arial throughout (font-family: Arial;
). When the messages arrive in Outlook 2010, text in table
elements is in Times New Roman. Text in div
elements is fine in Arial. If I View Source
, copy into an HTML file, and view in a browser, all fonts function as expected (it's all Arial).
Some Google results show that Outlook will fall back to its default font (Times New Roman) when none is specified, but that's not what's happening here.
Why is Outlook forcing my email to display in Times New Roman when specified otherwise?
I had the same problem....all text in the body of the email was Arial, but the table defaulted to word. I had to wrap the font in each each cell......time consuming..
Even if you set
font-family: arial
to table, it still wont work. You need to specifically set the font for eachtd
inside yourtable
to get it right.The <font> tag is deprecated but since Outlook 2010 is removing (almost all) styles, this is the only way it works.
This issue was happening from outlook 2007 and the previous solutions didn't work for me, the only solution that seems to work is wrapping the text with
<font face="arial, sans-serif">My text with arial</font>
table.MsoNormalTable {font-size:12.0pt; font-family:"Times New Roman";}
Open your HTML with Text Pad, and change it to Arial.