ash42
4 years agoNew Contributor III
Email Sender Snap Include two different table
This is some part of html code that I m using to include in Email body
'
<tr>
<th>Description</th>
<th>Record Count</th>
</tr>
<tr>
<td>Total Record Count In File</td>
<td>'+ _Rowcount + '</td>
</tr>
</table>
<br/><br/>
Total Successful Record Count In File :' + _ValidRecords+'<br>
Total Error Record Count In File :'+ _InvalidRecords+'
<br>Error Records Description<br><br>
<table class="hovertable">
</table>'
Here first table is just a table with 1 row with static values and for the second table tag rows will be populated from input document.
This is working ok,but the issue i am facing is both the table are sticking together even if i have defined them separately in html code. Also the text expected above the second table is also pushed down. refer screenshot below:
…I ran the same html code in my local browser and was getting expected results(Two separate tables)
Is there any fix for this,so that i get two separate tables