Improperly formatted email.';
exit();
}
echo '
Thank you for your Requesting Information.
';
echo '
Your Requested Information Will Be Sent Within 48 Hours
';
}else{
echo 'The email address was invalid.';
exit();
}
}else{
echo '
No email address was provided.
Please Enter Email and Resubmit
';
exit();
}
//$ouremail="webmaster@1advertuk.com";
$ouremail="info@mentorit-academy.co.uk";
$msg.='=================================================';
$msg.='
Changing Exclusion Into Inclusion';
$msg.='
MentorIT Academy Request Information:';
$msg.='
Enquiry Details:';
$msg.='
=================================================';
$msg.='
Name:-- '.$_POST['Cname'];
$msg.='
Email Address:-- '.$_POST['email'];
$msg.='
Telephone Number:-- '.$_POST['Cnumber'];
$msg.='
Address:-- '.$_POST['Caddress'];
$msg.='
Postcode:-- '.$_POST['Cpostcode'];
$msg.='
Enquiry:-- '.$_POST['Cenquiry'];
$msg.='
Video:-- '.$_POST['file'];
$msg.='
====================================================';
$msg.='
How Did They Here of MentorIT Academy? '.$_POST['How?'];
$msg.='
Other: '.$_POST['Cother'];
$msg.='
====================================================';
$msg.='
Please Send Information Pack To Above Address';
$msg.='
====================================================';
$hdr='Content-type: text/html; charset=iso-8859-1'."\n";
//$hdr.="From: Booking From MentorIT Academy Website";
$hdr.="From:".$_POST['email'];
$sent=mail($ouremail, 'MentorIT Academy Website Request:', $msg,$hdr);
if($sent){
echo '
Message Sent To MentorIT Academy, Please wait
';
}else{
echo '
Message NOT sent, please re-send';
}
?>