10 Stanhope Gardens, London NW7 2JD Tel: 0208 959 3626 e-mail address: info@calmez.co.uk
require('includes/email_functions.php');
$action = $_POST["action"];
if ( $action == "send")
{
// $to = $_POST["emailto"];
// $subject = $_POST["subject"];
// $to = "info@calmez.co.uk";
$to ="info@calmez.co.uk"; //info@calmez.co.uk
$subject = "An enquiry from the Calmez.co.uk website";
$from = $_POST["email_address"];
$full_name = $_POST["full_name"];
$address = $_POST["address"];
$tel_number = $_POST["tel_number"];
$comments = $_POST["comments"];
$body = "Full Name: " . $full_name."
Postal Address: ".$address."
Telephone: ".$tel_number."
Comments: ".$comments;
$result = email_send($to,$from,$subject,$body,"html"); //html in html format, text in plain text format
if ( $result == "1")
print("");
else
print "The sending of your email failed for some reason. Please click back and try again.";
}
?>