1. To make the font works with Outlook, applying style=”font-family: sans-serif” to every <td> tag.
  2.  
  3. For example, there is this code in HTML:
  4. <td align="left" class="paragraph">
  5.  
  6. You can place:
  7. style=”font-family: sans-serif”
  8. at the end before > like this:
  9. <td align="left" class="paragraph" style=”font-family: sans-serif”>
  10.  
  11. This will make it works with Outlook :)