";
$body .= "Date: " . date("d-M-Y") . "
";
$body .= "Name: " . $name . " ";
$body .= "Email: " . $email . " ";
$body .= "Organization: " . $org . " ";
$body .= "Title/Position: " . $title . " ";
$body .= "Address: " . $address . " ";
$body .= "Phone: " . $phone . " ";
$body .= "Fax: " . $fax . " ";
$body .= "Message: " . $message . " ";
$headers = "From:" . $email . "\n";
$headers .= "MIME-Version: 1.0\n";
$headers .= "Content-type: text/html; charset=utf-8\n";
if(mail($to, $subject, $body, $headers)){
$page_status = 1;
}
}
?>
Thank You for Your Inquiry, now inquiry has been send already";
}
else{
print "Plase Complete Your Information For Send Inquiry To Us";
}
?>
|