asked on October 26, 2018

I am trying to apply just a basic HTML table in email to look clean.  But I am having issues with it displaying properly.

Here is what I expect:

Here is what I am seeing:

This is the HTML I am embedding into the email:

<html>
<body>
<h3>Yesterday Work Orders</h3>
<table border="1">
%(Email Table Rows#[]##"HTML"#)
</table>
</body>
</html>

Where the token value is:

<tr><td>%(GetSuperRows_DateOfService)</td><td>%(GetSuperRows_JobID)</td><td>%(GetSuperRows_JobName)</td></tr>

<tr><th>Date Of Service</th><th>Job ID</th><th>Job Name</th></tr>
<tr><td>2018-10-25</td><td>2233</td><td>Chase Test Job</td></tr>
<tr><td>2018-10-25</td><td>2233</td><td>Chase Test Job</td></tr>
<tr><td>2018-10-25</td><td>2233</td><td>Chase Test Job</td></tr>

This token after the header is loaded via SQL DB and running a for each row to populate.

 

Any ideas why it is creating that second grouping?

0 0