<?php
//include_once("include/db_connection.php");
header("Expires: Thu, 17 May 2001 10:17:17 GMT"); // Date in the past
header ("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); // always modified
header ("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
header ("Pragma: no-cache"); // HTTP/1.0
session_start();
include('header.php');
include('left1.php');
//if($_SESSION["adminloggedIn"] == FALSE){
//header("Location:admin_login.php");
// exit;
//}
//$userName = $_SESSION["UserName"];
?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Premium Series by Free CSS Templates</title>
<meta name="keywords" content="" />
<meta name="Premium Series" content="" />
<link href="default.css" rel="stylesheet" type="text/css" media="screen" />
<script language="JavaScript" src="gen_validatorv31.js" type="text/javascript"></script>
<title>Untitled Document</title>
</head>
<body>
<div id="wrapper">
<!-- start page -->
<div id="page">
<!-- start content -->
<div id="prtCnt" align="center">
<div id="content" align="center">
<div class="post">
<h2 class="title"> </h2>
<div class="entry">
<?php
$email = $_POST["email"];
$subject=$_POST["subject"];
$mail_message = $_POST["mail_message"];
echo $email;
echo $subject;
echo $mail_message;
if (@eregi("^[a-zA-Z0-9_]+@[a-zA-Z0-9\-]+\.[a-zA-Z0-9\-\.]+$]", $email))
{
echo "invalid email address";
}
// Construct the message....
$mail = "
<html>
<head>
<title>$subject</title>
</head>
<body>
<p>".$subject."</p>
<table>
</table>
</body>
</html>";
// With HTML Emails we have to set the Content Type and MIME headers...
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
// Additional headers
//$headers .= "To: admin <hide@address.com>\r\n";
$headers .= "From: hide@address.com"."\r\n";
$headers .= "Cc: hide@address.com"."\r\n";
$headers .= "Bcc: hide@address.com"."\r\n";
$headers .= "X-Mailer: PHP/" . phpversion();
// Send the email...
if (!@mail($email, $subject, $mail, $headers)) {
echo "mailed successfully";
exit;
}
// Send the email...
//mail($email_addr, $subject, "$headers"."$mail", "From: info@".$_SESSION['APP_SERVER']."\r\n");
?>
message sent sucessfully
</p>
</div>
</div>
</div>
</div>
<!-- end content -->
<!-- start sidebars -->
<!-- end sidebars -->
<div style="clear: both;"> </div>
</div>
<!-- end page -->
</div>
</div>
</html>
<?php
include('footer.php');
?>