开发者

Change the colour of a hyperlink on an email address that is rendered in outlook html email

开发者 https://www.devze.com 2023-04-12 01:41 出处:网络
I have some C# code that inserts an email address into a placeholder in a html string (placeholder is in the format %Email%) and then sends this html as an email which is then opened using Outlook.

I have some C# code that inserts an email address into a placeholder in a html string (placeholder is in the format %Email%) and then sends this html as an email which is then opened using Outlook.

Basically I want the hyperlink colour to be white rather than the default blue.

I have tried to use CSS but not does not seem to work with the output in Outlook. I have 开发者_开发百科also tried hard-coding the colour into html but still without luck. It seems that the default hyperlink colour is overriding the colour I hard-coded.

Any help with this would be greatly appreciated.

Thank you.


It's probably too late. Try putting the style on a span tag inside the a tag.

<a href="#" style="color: #fff;"><span style="color: #fff;">Link</span></a>


Have you tried inline styles?

<a href="#" style="color: #fff;">Link</a>
0

精彩评论

暂无评论...
验证码 换一张
取 消