D:
/
vhosts
/
inpeacenet.com
/
httpdocs
/
inpeacenet
/
Contact
/
scripts
/
up file
home
<?php // Change the 4 variables below $yourName = 'inpeacenet.com'; //$yourEmail = 'inpeace@inpeacenet.com'; $yourEmail = 'noreply@inpeacenet.com'; //$yourEmail = 'cris.r@seznam.cz'; // $yourSubject = ''; $referringPage = 'www.inpeacenet.com'; // No need to edit below unless you really want to. It's using a simple php mail() function. Use your own if you want function cleanPosUrl ($str) { return stripslashes($str); } if ( isset($_POST['sendContactEmail']) ) { $to = $yourEmail; $subject = $yourSubject.': '.$_POST['posRegard']; $message = cleanPosUrl($_POST['posText']); $headers = "From: ".cleanPosUrl($_POST['posName'])." <".$_POST['posEmail'].">\r\n"; $headers .= 'To: '.$yourName.' <'.$yourEmail.'>'."\r\n"; $mailit = mail($to,$subject,$message,$headers); if ( @$mailit ) { header('Location: '.$referringPage.'?success=true'); } else { header('Location: '.$referringPage.'?error=true'); } } ?>