Hi ppl,
I have a mail function as follows:
mail($mail_to,$mail_sub,$mail_mesg,$headers);
Now, for $mail_mesg i want the message to be in html format as follows:
$mail_mesg="You have received a message from ur boss...
<a href=Login.php>Click here to view it.... </a>"
But this is not working... the code b/w <a> </a> is not being recognised as HTML and my mail is as follow:
You have received a message from ur boss...
<a href=Login.php>Click here to view it.... </a>"
Hw do i work this out...
Thanx in advance