htp.p not rendering correctly in Apex PL/SQL region
487377Nov 11 2007 — edited Nov 14 2007I'm using Apex 3.0.1 and have an application that merges data with an email template. I have a mailing list review function that allows you to preview any of the emails. This works by calling a packaged merge function in a PL/SQL region as in:
htp.p (package.merge_function (p1 => 1, p2 => 2, p3 => 3));
The "merge_function" returns a CLOB which contains the complete HTML message.
The problem is this: when the email is sent and received it looks fine, but when previewed as above the font size changes in the HTML are not recognised. The other attributes, e.g. colour and font face are OK. I am more experienced with PL/SQL than with HTML so any help would be appreciated.