I need to change the text color for a specific word in my text. I used to generate my text as shown below.
String message=string.empty; String message1="something"; String message2="something"; message += "My Message is"+ message1+ "and" + message2;
and I am sending this message as an email body. Therefore, I need to change the color of the text only part of this message. Suppose I want message2 to be red. How can i do this? Thanx.
source share