I'm using Apex 21.2. I have a field P52_BODY Where the type is Rich Text Editor. The Format is HTML and the Toolbar is Full.
I'm using this CLOB field to generate Emails using UTL_SMTP. The Email generation is fine, but I can't seem to change the font size in the Email.
When I try to change the font size with the pull-down I see only these options: Tiny, Small, Default, Big Huge.
If I use the Big option for a specific line, it generates the following in the database column <span class="text-big">This is body line 3</span>. However that HTML has no effect on the generated Emails. I'm guessing because there's no CSS for the Email.
Is there a way to adjust the font-size pull-down to have it include numeric font sizes that it could produce something like: <span style="font-size:18px; ">This is body line 3</span> If I recall, prior versions of Apex allowed the user to select numeric font sizes. Thanks for checking.