Hi all,
When i receive the email the link back to the post isn't a link.
What do i need to change in the code inorder for this to work?
$query = "SELECT distinct(reply_email) FROM reply WHERE post_id = $post_id AND autorespond = 'yes'";
$result = mysql_query($query) or die(mysql_error());
while($send = mysql_fetch_array($result)){
mail($send["reply_email"], "Reply to post", "Hello,\n\n$reply_name has just replied to the thread posted at Typhoon Entertainment\n\nThis thread is located at:\n<a href=http://www.typhoon-ent.com.au/typh_forum1.php?id=$post_id</a>");
}