I have a contact form on my website so users can send me an email but I have run into a problem.
I want to use an HTML link inside the email and I also want the content
Use nl2br on your message - http://php.net/manual/en/function.nl2br.php
nl2br
It will replace all newlines with HTML
$message = nl2br($message, false);
The second parameter *is_xhtml* is optional if you want to send an HTML email instead of XHTML