Ver Mensaje Individual
  #3 (permalink)  
Antiguo 19/03/2015, 09:36
Motd52
 
Fecha de Ingreso: marzo-2015
Mensajes: 7
Antigüedad: 9 años, 2 meses
Puntos: 0
Respuesta: DUPLICADO: Php google apps

Saludos este es el código:

<form action="contacto.php" method="post">
<label for="nombre">Nombre:</label>
<input id="nombre" type="text" name="nombre" placeholder="Nombre y Apellido" required />
<label for="email">Email:</label>
<input id="email" type="email" name="email" placeholder="[email protected]" required />
<label for="celular">Telf/Celular:</label>
<input id="celular" type="tel" name="celular" placeholder="Su número" required />
<label for="mensaje">Mensaje:</label>
<textarea id="mensaje" name="mensaje" placeholder="Mensaje" required></textarea>
<input type="submit" name="submit" value="Enviar" />
</form>

Y EL PHP

<?php

$nombre = $_POST['nombre'];
$email = $_POST['email'];
$celular = $_POST['celular'];
$mensaje = $_POST['mensaje'];
$para = '[email protected]';
$titulo = 'CONTACTO TANPU WASI';
$header = 'From: ' . $email;
$msjCorreo = "Nombre: $nombre\n E-Mail: $email\n Celular: $celular\n Mensaje:\n $mensaje";

if ($_POST['submit']) {
if (mail($para, $titulo, $msjCorreo, $header)) {
echo "<script language='javascript'>
alert('Mensaje enviado, muchas gracias.');
window.location.href = 'http://www.tanpuwasi.com.pe';
</script>";
} else {
echo 'Falló el envio';
}
}
?>
----

Como verán tengo la cuenta en un hotmail porque al gmail no me llegan los correos

Gracias