I am a beginner in coding and oracle apex 5.0 and developing an application which triggers an email. I am trying to arrange one of the Item named 'LIST OF ISSUES' in a tabular format since it has multiple rows.
A sample output value of item (P1_LIST_OF_ISSUES) = (it has series of issues at a particular time)
<p> Column1 || Column2 || Column3
Column1.1 || Column2.1|| Column3.1
Column1.2 || Column2.2 || Column3.2
Column1.3 || Column2.2 || Column3.3
</p>
I want this data to appear in a tabular format in my email. My current email code for this ITEM is
[ <table width="100%" border="0" cellpadding="0" cellspacing="0" style="border: solid 1px #000000;" align="center">
<tr><td width="100%" height="7" ></td></tr>
<tr><td> </td></tr>
<tr><td><table width="100%" border="0" align="center" cellpadding="0" cellspacing="0"><tr><td>
<p><font size="3" face="Arial, Helvetica, sans-serif"><strong> Issues: </strong> </font> <br> ' || replace(:P1_LIST_OF_ISSUES,chr(10),'<BR>') || ' <br> <br><font size="3" face="Arial, Helvetica, sans-serif"><strong> </td></tr></table></td></tr> </td></tr></table></td></tr>
<tr><td> </td></tr>
</table> ]
Thank you.