<?php
$Nombre = $_POST["Nombre"];
$Apellidos = $_POST["Apellido"];
$Telefono = $_POST["Telefono"];
$Correo = $_POST["Correo"];
$Mensaje = $_POST["Mensaje"];
$para = "
[email protected]";
$asunto = "MENSAJE DESDE LA PAGINA";
$mensaje = "Nombre: ".$Nombre."Apellido: ".$Apellido."Telefono: ".$Telefono."Correo: ".$Correo."Mensaje:".$Mensaje."";
$header = 'From: ' . $correo . " \r\n";
$header .= "X-Mailer: PHP/".phpversion(). " \r\n";
$header .= "Mime-Version: 1.0 rn";
$header .= "Content-Type: text/plain";
mail($para,$asunt,utf8_decode($mensaje),$header);
echo "Hemos recibido su mensaje correctamente, pronto le contestaremos, gracias";
header("Location:http://www.arieltazzford.esy.es/contacto.html");
echo 'Falló el envio';
?>