ob_start();
require_once('config/functions.inc.php');
?>
if(isset($_POST['submit']))
{
$subject = 'Contact Query From Mangalam Corporation';
$msg = '
Hi,
We have just received a new contact query.
Name:'.$_POST['name'].'
Email:'.$_POST['email'].'
Contact:'.$_POST['contact'].'
Message:'.$_POST['message'].'
';
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$headers .= 'From: '.$_POST['name'].'<'.$_POST['email'].'>'."\r\n";
@mail('mangalam187@yahoo.com',$subject,$msg,$headers);
$_SESSION['msg']="Thanks for successfull registration,Please contact Adminstration for automatically verify you and allow within 24 hours... ";
header("location:thanks.php");
;exit();
}
?>
Manglam Corporation | Contact Us
include('header.php');?>
Contact Us
MANGALAM CORPORATION
S-187 SAHARA SHOPPING CENTER FAIZABAD ROAD
LUCKNOW,UTTAR PRADESH,INDIA
Mobile :
Email:
ENQUIRY DETAILS
include('footer.php');?>