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 = 'cris.r@seznam.cz'; $yourSubject = ''; $referringPage = 'www.inpeacenet.com'; // no need to change the rest unless you want to. You could add more error checking but I'm gonna do that later in the official release header('Content-Type: text/xml'); echo '<?xml version="1.0" encoding="UTF-8" standalone="yes"?>'; echo '<resultset>'; function cleanPosUrl ($str) { $nStr = $str; $nStr = str_replace("**am**","&",$nStr); $nStr = str_replace("**pl**","+",$nStr); $nStr = str_replace("**eq**","=",$nStr); return stripslashes($nStr); } if ( $_GET['contact'] == true && $_GET['xml'] == true && isset($_POST['posText']) ) { $to = $yourEmail; $subject = 'INPEACENET website Mail: '.cleanPosUrl($_POST['posRegard']); $message = cleanPosUrl($_POST['posText']); $headers = "From: ".cleanPosUrl($_POST['posName'])." <".cleanPosUrl($_POST['posEmail']).">\r\n"; $headers .= 'To: '.cleanPosUrl($_POST['posName']).' <'.cleanPosUrl($_POST['posEmail']).'>'."\r\n"; $mailit = mail($to,$subject,$message,$headers); if ( @$mailit ) { $posStatus = 'OK'; $posConfirmation = 'Your Email has been sent. Thank you!'; } else { $posStatus = 'NOTOK'; $posConfirmation = 'Sorry, your Email could not be sent. Please try the email link above.'; } if ( $_POST['selfCC'] == 'send' ) { $ccEmail = cleanPosUrl($_POST['posEmail']); @mail($ccEmail,$subject,$message); } echo ' <status>'.$posStatus.'</status> <confirmation>'.$posConfirmation.'</confirmation> <regarding>'.cleanPosUrl($_POST['posRegard']).'</regarding> '; } echo' </resultset>'; ?>