function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Chiel de Graaf.Chiel de Graaf. 

Custom font in email template

Is it possible to reference a static resource within a custom HTML email template, without using css?

I uploaded a zip file containing the wanted .ttf and i want to use it in the mail.

It has to be placed inside this piece of code: 
 
<TABLE id=Banner border=0 cellSpacing=0 cellPadding=0 width="100%"><TR><TD><TABLE border=0 cellSpacing=0 cellPadding=0 width="100%"><TR><TD style="MIN-WIDTH: 16px; WIDTH: 16px"></TD><TD style="LINE-HEIGHT: 16px; WIDTH: 400px;  MAX-WIDTH: 400px; COLOR: #666666; FONT-FAMILY:Arial, Helvetica, sans-serif; FONT-SIZE: 90%; PADDING-TOP: 30px; PADDING-RIGHT: 15px" class=text vAlign=top align=left>

 
SobSob
Yes. You should be able to use it. Try using image tag as follows <img src="{!URLFOR($Resource.imageName)}" alt="name" />
Chiel de Graaf.Chiel de Graaf.
Hi Sob,

I failed to mention in my question that it was to show a custom font type in the mail. Is this also done through an <img> tag?
Tried your solution, but still got the same font (and it stripped some code).