I have a text that must be send as an email. But to give the mail its layout we need to add some style. What we must do is the following: 1 find in a text one or more links with this format
<a href="RANDOM URL HERE">RANDOM TEXT</a>
2 change the links into this format:
<a href="RANDOM URL HERE" style="color: #FFFFFF; text-decoration: none;"><span style="color: #FFFFFF;">RANDOM TEXT</span></a>
I have no idea how i can best do this, with regex or with DOM,...
Many thanks!