How to Print colors in data table cell in outlook mail

Hi Users,

I want to Know How we Can add The Colors in the Cells of the Data table in Outlook Mail Using HTML Body.

Thanks,

Hi @Agantuk_Avi,

Welcome to community.

You can add styles to td elements inside your HTML table.

<table>
  <tr>
    <td style="background-color:#00FF00;">Yeşil hücre</td>
    <td style="background-color:#0000FF;">Mavi hücre</td>
  </tr>
</table>

Regards,
MY

1 Like

Hi @muhammedyuzuak

I have RGB values but this code is not working on that.

Hi @Vipin_Kashyap , this is working.

Hi @Manzar.Ali,
Thanks, you answered my question but I have RGB values when I use that values in the code it is not working. So how do I use the value of RGB in that

Try background-color:rgb(255, 0, 0); where the 255 / 0 /0 are your individual RGB numbers.

Example: "<table><tr><td style=background-color:rgb(255,0,0);>Test Number</td><td style=background-color:rgb(0,255,0);>abcde</td></tr></table>"

image

2 Likes

Hi @yikwen.goo,
this is working thank you.

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