";
$msg .= "The contact you selected will get back to you as sool as possible.\n ";
$msg .= "A response can take up to 7 work days.\n ";
$msg .= "\n ";
$msg .= "In the case of an emergency, refer to the contact details below:\n ";
$msg .= file_get_contents($contact.".txt");
// use wordwrap() if lines are longer than 70 characters
$msg = wordwrap($msg,70);
$headers = "";
$headers .= "From: Lorem Corp \r\n";
$headers .= "Reply-To: noreply@loremcorp.local\r\n" ."X-Mailer: PHP/" . phpversion();
$headers .= 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; // send email
mail($recipient,"We have received your email!",$msg, $headers);
?>
You will receive a confirmation E-Mail shortly.
Thank you for contacting us! Return to our homepage