how do i send a link through php mail cuz whenevr i make a link in the mail() function it showws the tags in the email and the hyperlink wont work?
Putting url directly will not work for some email readers they will show as text you will need html headers and use html in body of email Regards Alex
You must format the mail with adding specific header, so that the recipient display it as HTML, not a plain text.
Here are the HTML headers, assuming your using $headers to store your mail header info. $headers .= 'MIME-Version: 1.0' . "\r\n"; $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; PHP: