Skip to main content
Solved

Adding color to email body copy

  • January 25, 2023
  • 5 replies
  • 174 views

Forum|alt.badge.img+19

Is it possible to add color to the automated email body copy. We are hoping to emphasize certain areas of content to our partners through the use of color. Thanks!

Best answer by TheTimeSavingCo

Yeap it's doable.  You'd do it via HTML, and you could either do it within the automation itself, or create formula fields that you'd then insert into the automation 

Here's an example of it being done within the automation itself:

<span style="color: red">Lorem </span><span style="color: blue">Ipsum </span><span style="background-color: yellow">Dolor</span>

And the result:

5 replies

TheTimeSavingCo
Forum|alt.badge.img+31

Yeap it's doable.  You'd do it via HTML, and you could either do it within the automation itself, or create formula fields that you'd then insert into the automation 

Here's an example of it being done within the automation itself:

<span style="color: red">Lorem </span><span style="color: blue">Ipsum </span><span style="background-color: yellow">Dolor</span>

And the result:


Forum|alt.badge.img+19
  • Author
  • Known Participant
  • January 26, 2023

Thank you! I will give this a try!


Forum|alt.badge.img+19
  • Author
  • Known Participant
  • January 26, 2023

Yeap it's doable.  You'd do it via HTML, and you could either do it within the automation itself, or create formula fields that you'd then insert into the automation 

Here's an example of it being done within the automation itself:

<span style="color: red">Lorem </span><span style="color: blue">Ipsum </span><span style="background-color: yellow">Dolor</span>

And the result:


Thank you! This worked perfectly for my use case. Appreciate your assistance!


TheTimeSavingCo
Forum|alt.badge.img+31

Thank you! This worked perfectly for my use case. Appreciate your assistance!


Glad I could help!


Forum|alt.badge.img+10
  • Known Participant
  • February 21, 2024

@TheTimeSavingCo is it possible to have colored URL? I don’t have a static URL, I'm using URL from field (which is specific for every record - it's actually URL to a prefilled Form)

I tried but it's not working:

<span style="color: blue">[text for url](field with URL)</span>

 

I also tried with HTML URL but it's also not changing the color:

<span style="color: green"><a href="field with url">text for url</a></span>