I have a forum, when a person posts a message the message is also sent in the notification email:
$message = stripslashes($message);
$send_body = "$message";
sendmail($rowmember['emailAddress'], $send_subject, $send_body);
however the email still looks like this:
test 3<br /><br />test 3 with quotes " and "
what can I do to get fid of the annoying tags? somebody told me : " use str_replace() and replace " to quote sign, and <br> into \n"
how can I apply this to my mesage? I have no clue about str_replace and also was rather confused when I look up in the manual. I also don't know how to combine it with stripslashes, anybody that can modify my script a bit? thanks.