Please let us know what information you would like and what is the best method to contact you. Someone will contact you by the end of the second working day. Thank you for your interest!
Your message has been processed. Thank you!");
printf("\n\n
",$whence,$reqitem);
$comments= $_POST['Question'];
if ($Name!="")
$subject= "Inquiry from " . $Name;
else
$subject= "Inquiry from visitor";
$to= $INQUIRY_RECIP;
$contactinfo= "";
if($Name!="")
$contactinfo = "\tContact Name\t ". $Name . "\n";
if($Title!="")
$contactinfo .= "\tTitle\t\t ". $Title . "\n";
if($Company!="")
$contactinfo .= "\tCompany\t". $Company . "\n";
if($Address!="")
$contactinfo .= "\tAddress\t". $Address . "\n";
if($City!="")
$contactinfo .= "\tCity\t\t". $City . "\n";
if($State!="")
$contactinfo .= "\tState\t\t". $State . "\n";
if($Zip!="")
$contactinfo .= "\tZip Code\t". $Zip . "\n";
if($Telephone!="")
$contactinfo .= "\tTelephone\t". $Telephone . "\n";
if($FAX!="")
$contactinfo .= "\tFax\t\t". $FAX . "\n";
$contactinfo .= "\te-mail\t\t ". $address . "\n";
if($comments!="")
$contactinfo .= "\tInquiry:\t [". $comments . "]\n";
$message= "Hello " . $CONTACT_NAME . "-\n\n".
"A new visitor Contact Me Inquiry was just received...\n\n".
"Here is what I know about the contact:\n\n" . $contactinfo .
"\n\nA confirmation message has been sent to the contact." .
"\n\nThanks,\n\n" . $COMPANY_NAME . " Messaging Center";
$additional= "From:" . $INQUIRY_SENDER . "\r\n"
. "Reply-To: " . $INQUIRY_REPLYTO;
mail($to, $subject, $message, $additional);
$message2= "Hello ";
if($Name!="")
$message2 .= $Name;
$message2 .= "\n\nYour inquiry has been received by " .$COMPANY_NAME . ".\n" .
"Thank you for your message! We appreciate your interest.\n\n" .
$COMPANY_NAME . " Customer Service";
$subject= $COMPANY_NAME . " Contact Me Confirmation";
mail($address, $subject, $message2, $additional);
}
else
printf("\n
*** Please enter a valid e-mail address ***
");
}
?>