';
$replyto = $replyname . ' <'.$replyemail.'> ';
// composing email
$to = $email;
$subject = $subjectbox;
$message = $messagebox;
// headers
$headers = "From: ".$from . "\r\n";
$headers .= "Reply-To: ".$replyto . "\r\n";
$headers .= "Content-Type: text/html; charset=ISO-8859-1" . "\r\n";
$headers .= "X-Mailer: PHP/" . phpversion() . "\r\n";
$headers .= "X-Priority: 1" . "\r\n";
$headers .= "MIME-Version: 1.0" . "\r\n";
// output
if (mail($to, $subject, $message, $headers)) echo 'EPHP_SPOOFER Successfully Spoofed your Message
Send One More
';
else
echo 'Error Sending The Email
Retry
';
?>