Add Paragraph in HTML Tables

Dear Team,

I have a below html script to add a datatable in the Mail Body,

"Dear Sir,

Please find the ECOO Autoreport Status.

"+VRLMailTable+"
EmailTime VRL Email Received Report Time Latest Report
"+RHLMailTable+"
EmailTime RHL Email Received Report Time Latest Report
"+BBPMailTable+"
EmailTime BBP Email Received Report Time Latest Report
"+GANMailTable+"
EmailTime GAN Email Received Report Time Latest Report
"+VILMailTable+"
EmailTime VIL Email Received Report Time Latest Report
"+NADMailTable+"
EmailTime NAD Email Received Report Time Latest Report
"+KWRMailTable+"
EmailTime KWR Email Received Report Time Latest Report
"+RKTMailTable+"
EmailTime RKT Email Received Report Time Latest Report

Thank You"

By using above script, currently it is look like below,

i have to add a paragraph between the tables so it will look better and separated.

Thanks,
Amol

Dear Team,

Attaching the script in txt files.

Thanks,
Amol

HTML Script.txt (1.3 KB)

Hi @Amol_Golhar

Try this text file:
HTML Script.txt (1.5 KB)

Please add the required text in that place.

Hope it helps!!
Regards

as it is html:
you can use
block elements to surround the tables

  • p, div

or linebreaks in between: <br>

Just surround your table with <p> ... </p>.

"Dear Sir,<p>Please find the ECOO Autoreport Status.<p>

<p><table border=2>
<tr>
<td>EmailTime VRL</td>
<td>Email Received</td>
<td>Report Time</td>
<td>Latest Report</td>
</tr>"+VRLMailTable+"
</table></p>

<p><table border=2>
<tr>
<td>EmailTime RHL</td>
<td>Email Received</td>
<td>Report Time</td>
<td>Latest Report</td>
</tr>"+RHLMailTable+"
</table></p>

<p><table border=2>
<tr>
<td>EmailTime BBP</td>
<td>Email Received</td>
<td>Report Time</td>
<td>Latest Report</td>
</tr>"+BBPMailTable+"
</table></p>

<p><table border=2>
<tr>
<td>EmailTime GAN</td>
<td>Email Received</td>
<td>Report Time</td>
<td>Latest Report</td>
</tr>"+GANMailTable+"
</table></p>

<p><table border=2>
<tr>
<td>EmailTime VIL</td>
<td>Email Received</td>
<td>Report Time</td>
<td>Latest Report</td>
</tr>"+VILMailTable+"
</table></p>

<p><table border=2>
<tr>
<td>EmailTime NAD</td>
<td>Email Received</td>
<td>Report Time</td>
<td>Latest Report</td>
</tr>"+NADMailTable+"
</table></p>

<p><table border=2>
<tr>
<td>EmailTime KWR</td>
<td>Email Received</td>
<td>Report Time</td>
<td>Latest Report</td>
</tr>"+KWRMailTable+"
</table></p>

<p><table border=2>
<tr>
<td>EmailTime RKT</td>
<td>Email Received</td>
<td>Report Time</td>
<td>Latest Report</td>
</tr>"+RKTMailTable+"
</table></p>

<p>Thank You<p>"

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.