Skip to main content
Announcements
A fresh, new look for the Data Integration & Quality forums and navigation! Read more about what's changed.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

tSendMail: Sending bold text in mail or highlight the text

Hi,

Can someone show me how to highlight the text in the email body with tSendMail component?

I already use MIME subtype as HTML instead of Plain Text in advance settings.
I created a HTML table in email with a global variable and I was able to highlight the table and 

bold the headers. 

Now I just want to highlight a part of the email body (it's not a table). Can someone please help?

Thanks!

Labels (2)
1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

I may have misunderstood your question, but it sounds like you just need to use the <b> tag. So your bold text should be surrounded like this...

 

<b>The is my bold text</b>, this text is not

View solution in original post

3 Replies
Anonymous
Not applicable
Author

I may have misunderstood your question, but it sounds like you just need to use the <b> tag. So your bold text should be surrounded like this...

 

<b>The is my bold text</b>, this text is not
Anonymous
Not applicable
Author

Thank you for the quick response! It gave me a lint to find out more:

 

<b>Here is my text</b><br>

<span style=background-color:yellow>Here is my text</span><br>
<b><span style=background-color:yellow>Here is my text</span></b><br>

 

Here will be the outcome:

Here is my text

Here is my text (hightlighted in yellow)

Here is my text (hightlighted in yellow)

Sorry, I was not able to find the background color button so I couldn't really highlight my text.
<br> at the end of each code will start a line, so you will see three lines of "Here is my text".

Anonymous
Not applicable
Author

I'm glad I was able to help solve your issue 🙂