Code: Select all
<?php
// Change the 4 variables below
$yourName = 'Prashant';
$yourEmail = '********@gmail.com';
$yourSubject = 'User Application';
$referringPage = 'http://www.domain.com/application/index.php';
// 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['posName'];
$message = 'Name: '.cleanUrl($_T['posName'])."\n"
.'Email: '.cleanUrl($_T['posEmail'])."\n"
.'Portfolio: '.cleanUrl($_T['posPortfolio'])."\n"
.'Experience: '.cleanUrl($_T['posExperience'])."\n"
."Statement: \n".cleanUrl($_T['posStatement'])."\n";
$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');
}
}
?>