Quite right!! the code for the php is:
<?php
/* Subject and Email Variables */
$email_to = "enquiries@kyu-images.com";
$email_subject = "General Enquiry";
$thankyou_url = "http://www.kyu-images.com/contact-us/email_sent.html";
/* Gathering Data Variables */
$nameField = $_POST["name"];
$email_from = $_POST["email"];
$address1Field = $_POST["address1"];
$address2Field = $_POST["address2"];
$townField = $_POST["town"];
$postcodeField = $_POST["postcode"];
$phoneField = $_POST["phone"];
$serviceField = $_POST["service"];
$brochureField = $_POST["brochure"];
$aboutusField = $_POST["aboutus"];
$oursiteField = $_POST["oursite"];
$commentsField = $_POST["comments"];
$headers = "From: $email_from . \r\n";
$headers .= "Reply-To: $email_from . \r\n";
$headers .= "Content-type: text/html\r\n";
$message = <<<EOD
<br><hr><br>
Name: $nameField <br>
Email: $email_from <br>
First Address Line: $address1Field <br>
Second Address Line: $address2Field <br>
Address Town: $townField <br>
Postcode: $postcodeField <br>
Telephone: $phoneField <br>
Service Enquiry: $serviceField <br>
Send Brochure: $brochureField <br>
How Did They Find Us: $aboutusField <br>
Did They Like Our Site: $oursiteField <br>
Client Comments: $commentsField <br>
<br><hr><br>
EOD;
ini_set("sendmail_from", $email_from);
$sent = mail($email_to, $email_subject, $message, $headers, "-f" . $email_from);
/*Results Rendered As HTML */
if($sent) {
header("Location: " . $thankyou_url); // Redirect customer to thankyou page
} else {
// The mail didn't send, display an error.
echo "There has been an error sending your message. Please try later.";
}
?>