I have the following code to send an email to the users.
$mes_body.="Click to Login. www.website.com/index.php\n\n";
$mes_body.= "<a href='www.website.com/index.php'>Click to Login.</a>\n\n";
Right now i am seeing the email as :
Click to Login. www.website.com/index.php
<a href='www.website.com/index.php'>Click to Login.</a>
What is want is a clickable 'Click to Login' and not the link exactly. I guess i am using plaintest. i cant change it right now so is there any workaround for this? Thanks.