Ver Mensaje Individual
  #3 (permalink)  
Antiguo 30/08/2015, 12:31
Rodrigo12345
 
Fecha de Ingreso: agosto-2015
Mensajes: 8
Antigüedad: 8 años, 8 meses
Puntos: 0
Respuesta: Problema con formulario de contacto.

Cita:
<?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';

?>
Ahora lo eh hecho como dijiste y tampoco me llega el email.