if (isset($_POST["enviar"])) {
$error=array();
$estilo="background-color:#E13939";
if (trim($_POST["nombre"])=="") {
$error["nombre"]=$estilo;
}
if (!validar_email($_POST["email"])) {
$error["email"]=$estilo;
}
if (trim($_POST["consulta"])=="") {
$error["consulta"]=$estilo;
}
if (trim($_POST["fecha_llegada"])=="") {
$error["fecha_llegada"]=$estilo;
}
if (trim($_POST["fecha_salida"])=="") {
$error["fecha_salida"]=$estilo;
}
if (count($error)==0) {
require $_SERVER['DOCUMENT_ROOT']."/includes/phpmailer/class.phpmailer.php";
$correo = new PHPMailer();
$correo->CharSet = "iso-8859-1";
$correo->From = "web@villadenoja.com";
$correo->FromName = "Contacto web";
$correo->AddBCC('formularios@oncedecien.com');
$correo-> AddAddress ($CORREO);
$correo->Subject = "Solicitud de información desde villadenoja.com";
$correo->ContentType = "text/html";
$correo->WordWrap = 0;
$correo->AddReplyTo($_POST["email"], $_POST["nombre"]);
//preparamos el correo
$correo->Body = "
Se ha solicitado información desde sitio web http://www.villadenoja.com con los siguientes datos:
Nombre:
".$_POST["nombre"]."
Email:
".$_POST["email"]."
Teléfono:
".$_POST["telefono"]."
Fecha de llegada:
".$_POST["fecha_llegada"]."
Fecha de salida:
".$_POST["fecha_salida"]."
N° de personas:
".$_POST["num_personas"]."
Consulta:
".$_POST["consulta"]."
";
if ($correo->Send()) {
?>
exit;
}
}
}
?>
If you wish to make a booking in our apartments, you must fill in your details below where you must indicate the dates and the number of guests and after, we are going to contact with you for formalizing the booking.