This is my code that I use for processing my form:
<?php
$to = "info@bluedotwalking.com";
$extra = "From: $emailAddr\r\nReply-To: $emailAddr\r\n";
$mess = "Message from: ".$name."\n\n".$message." \n\n\n\n\n\nIP Address(".$REMOTE_ADDR.") Browser and OS(".$HTTP_USER_AGENT.")";
mail ($to, $subject, $mess, $extra);
echo("<center>Thank you. Your message has been sent. We look forward to receiveing your mail and getting back to you as soon as possible.<br><br><a href=\"".$HTTP_REFERER."\">Click here to return to Contact Us.</a></center>\n");
?>
Where in the above would I post the "stripslashes" line of code?