Outlook не считывает стиль HTML

Пытаюсь выделить определенный столбец (в данном случае 5) и отправить письмо используя sp_send_dbmail. Проблема в том, что в оутлук столбец не выделяется цветом, хотя в HTML компилере все работает.

Пример, который собирает тело письма:

<table border="1" class="table"> 
  <colgroup>
    <col span="4" style="background-color: #FFFFFF">
    <col span="1" style="background-color: #FF1900">
  </colgroup>
<tr> 
<th bgcolor= #EAFAF1> 1 </th>   
<th bgcolor= #EAFAF1> 2 </th>   
<th bgcolor= #EAFAF1> 3 </th>   
<th bgcolor= #EAFAF1> 4 </th>   
<th bgcolor= #EAFAF1> 5 </th>   
<th bgcolor= #EAFAF1> 6 </th>   
<th bgcolor= #EAFAF1> 7 </th>   
<th bgcolor= #EAFAF1> 8 </th>   
<th bgcolor= #EAFAF1> 9 </th>   
<th bgcolor= #EAFAF1> 10 </th>  
<th bgcolor= #EAFAF1> 11 </th> 
</tr>
<tbody>
<tr><td>WW</td><td>WW</td><td>WW</td><td>W</td><td>W</td><td>W</td><td>W</td><td>W</td><td>W</td><td>W</td><td>W</td></tr>
</tbody>
</table>


Ответы (0 шт):