After searching endlessly online, I have yet to find a solution for setting the font-family
on all elements within the body of an email. While it works perfectly across various platforms like Outlook Mac, Gmail, and Yahoo using this CSS
:
<style>
body, table, td {font-family: Arial, Helvetica, sans-serif !important;}
</style>
Unfortunately, it does not work on Outlook Windows...
I attempted to set the font-family
inline on every element in my email, as shown below, but it keeps reverting back to Times New Roman. Any advice or suggestions would be greatly appreciated.
<h2><span style="font-family: arial, helvetica, sans-serif;">EMAIL HEADING TEXT GOES HERE</span></h2>
Thank you.