US Address
1183 Berryhill Drive
Lithonia, GA 30058
E-mail: service@jcquality.com
Voice/Fax: (770) 484-6545
Nigeria Address
5th Floor Alex Creepy House
30 King George V, Onikan-Lagos
GSM: 234-803-365-6459
Land Phone: 234-01-2637654
Fax: 234-01-2637698
Contact Us
if(!isset($_POST['submit'])){
//Form
?>
}else{
//Process Form
#prepare input########################################
$name = $_POST["name"];
$email = $_POST["email"];
$service = $_POST["service"];
$message = $_POST["message"];
######################################################
#some variables storing info about you
$auth_name = "JC Quality";
$auth_email = "service@jcquality.com";
$auth_site = "Contact from JC Qaulity";
#Send the email to the author
if(mail("$auth_email", "Service Request from JC Quality WebSite", "From: $uname $ulast
Name: $name
Email: $email
Service: $service
Message: $message", "From:$email\r\nReply-to:$email")){
echo "
Thank you $name! Your Message has been sent.
";
} else {
echo "
There was an error when sending your message.
";
}
}
?>