
Announcements
I'm working on a flow where an html table email is received with outlook desktop. There appears to be rendering issues so i need inline styling for my html script. What i have so far works in highlighting specific columns however these tables will change in size daily so I don't believe adding the style to every row is an option for me. How can this be achieved with inline CSS? Or maybe i have another option here. thanks
<table>
<thead>
<tr>
<th>Pro Number</th>
<th>Date</th>
<th>Est Delivery Date</th>
<th>Origin</th>
<th>Destination</th>
<th>Terms</th>
<th>Total A/R</th>
<th>Responsible Account</th>
<th>Responsible Customer</th>
<th>Responsible Name</th>
<th>Responsible Risk Code</th>
<th>Responsible Analyst</th>
</tr>
</thead>
<tbody>
<tr>
<td style="background-color:#FFFF00">123456789</td>
<td>2021-11-24</td>
<td>2021-11-29</td>
<td>LOU</td>
<td>CIN</td>
<td style="background-color:#FFFF00">Collect</td>
<td style="background-color:#FFFF00">1000</td>
<td>1</td>
<td>1</td>
<td style="background-color:#FFFF00">Sample Customer</td>
<td style="background-color:#FFFF00">CASH ONLY - NO BUSINESS ALLOWED</td>
<td>Sample Analyst</td>
</tr>
</tbody>
</table>
i had to settle for highlighting the headers. Outlook desktop uses an old rendering engine that seems to only work with inline css
<th style="background-color:#FFFF00">Pro Number</th>
<th>Date</th>
<th>Est Delivery Date</th>
<th>Origin</th>
<th>Destination</th>
<th style="background-color:#FFFF00">Terms</th>
<th style="background-color:#FFFF00">Total A/R</th>
<th>Responsible Account</th>
<th>Responsible Customer</th>
<th style="background-color:#FFFF00">Responsible Name</th>
<th style="background-color:#FFFF00">Responsible Risk Code</th>
<th>Responsible Analyst</th>