Jan 25, 2023 07:07 AM
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!
Solved! Go to Solution.
Jan 25, 2023 11:07 PM
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:
Jan 25, 2023 11:07 PM
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:
Jan 26, 2023 05:33 AM
Thank you! I will give this a try!
Jan 26, 2023 05:44 AM
Thank you! This worked perfectly for my use case. Appreciate your assistance!
Jan 26, 2023 05:55 AM
Glad I could help!
Feb 21, 2024 01:42 AM
@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>