ITSM email notifications

Rajyalakshmi22
Tera Contributor

I want to change the color of the hyperlink in outbound notifications for that i have created a style tag. its working fine in outook however not working in Gmail.

 

<style>
a:link{ color: #00A59B; text-decoration: none; }

a:visited { color:#50009B; text-decoration: none; }
</style>

 

Can anyone please help me.

9 REPLIES 9

AnveshKumar M
Tera Sage
Tera Sage

Hi @Rajyalakshmi22 

 

Most of the online mail clients like Gmail strips out the <style> tag content form the email. It is recommended to use inline styles.

 

Thanks,
Anvesh

msd93
Kilo Sage

Hi @Rajyalakshmi22 

 

If gmail rendering is not working try the below styling:

<style>
a:link{ color: #00A59B !important; text-decoration: none; }

a:visited { color: #50009B !important; text-decoration: none; }
</style>

 

Hope this helps you.

I tried this one also.Its working in outlook not in gmail.

Rajyalakshmi22
Tera Contributor

Thank you for your response.

 

I have tried inline styling also .Its working for hyperlink color .I want visited link color also. How to define inline visited link color within a tag. Is Vlink works in Gmail. Because it works in outlook.

 

<a style="color:#00A59B;" href="XYZ">XYZ</a>