Is it possible to add color to text in email body?

Dears
Is it possible to add color to text in email body? Thanks

1 Like

Kindly have a view in this

The question has a example with it
Cheers @hsendel

1 Like

Thanks @Palaniyappan, in my case I want to specify which word need to be colored.

1 Like

Yes, you definitely can. The email bodies can be interpreted as HTML, so you can use CSS in order to color specific portions of your text. Here’s how you do CSS colors.

Specifically, doing something like this should change the color of only a single word to red for instance:

hello <span style="color:red;">world</span>. hello world.

Which will look like this:
image

3 Likes

Thx @dmccammond, Is it possible to have the word as variable, let me explain: suppose you scrap a portion of text from news paper in the net and you want to send the extracted information by email and you want to highlight each encountered word " Hello" by red color, Possible?

1 Like

Of course, you’d use string concatenation. Using the previous example:

"News paper info: <span style='color:red;'>" + YourVariableName + "</span>"
2 Likes

I will share an xaml example to make things more clear.Thx

    "<h2 style = "background-color:cyan">Newton</h2>"