Contact Form
Product :
Name :
Email :
Phone :
Fax :
Address :
City/State :
Zip Code :
Country :
Enquiry :

$subject =”$product”;

// Details
$message=”$detail”;

// Mail of sender
$mail_from=”$customer_mail”;

// From
$header=”from: $name <$mail_from>”;

// Enter your email address
$to =’gmempire2011@gmail.com’;
$send_contact=mail($to,$subject,$message,$header);

// Check, if message sent to your email
// display message “We’ve recived your information”
if($send_contact){
echo “We’ve recived your contact information”;
}
else {
echo “ERROR”;
}
?>