
if($_POST){ $subject="Reactie van de website [ www.cremebruleeparty.com ]"; $mailheaders ="From: \"".stripslashes($_POST['naam'])."\" <".stripslashes($_POST['email']).">\r\n"; $mailheaders.="Reply-To: \"".stripslashes($_POST['naam'])."\" <".stripslashes($_POST['email']).">\r\n"; $mailheaders.="X-Originating-IP: [".$_SERVER['REMOTE_ADDR']."]"; $receiver="info@arttriq.nl"; $contact=stripslashes($_POST['contact']); $email=stripslashes($_POST['email']); $bericht=stripslashes($_POST['bericht']); $body.="------------------------------- \r\n"; $body.="van: ".$contact."\r\n"; $body.="email: ".$email."\r\n"; $body.="------------------------------- \r\n"; $body.="".$bericht."\r\n"; mail($receiver,$subject,$body,$mailheaders); $sent="patrick";} ?>


