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
devNut!devNut! 

Html template - "font size=x" not set properly in underlying EmailTemplate HTML code

I am creating a HTML template through the Salesforce UI.  When I specify the text as size 12 using the formatting controls it appears fine in the salesforce UI - See screenshot

However when viewing the underlying HTML code stored in the HtmlValue property of the EmailTemplate object (see below) the size is not specified properly (It shows 5 but should be 12).

Is this expected?

-----------
Code:
<table cellpadding="5" width="550" height="400" cellspacing="5" border="0" >
<tr height="400" valign="top" >
<td locked="0" style=" font-family:arial; bLabel:main; color:#000000; font-size:12pt; 
bEditID:r3st1; background-color:#FFFFFF;" aEditID="c1r1" tEditID="c1r1" >
<![CDATA[<font size="5">Test</font><br>]]></td>
</tr>
</table>