Ver Mensaje Individual
  #3 (permalink)  
Antiguo 24/02/2015, 05:22
Avatar de lauser
lauser
Moderator Unix/Linux
 
Fecha de Ingreso: julio-2013
Ubicación: Odessa (Ukrania)
Mensajes: 3.278
Antigüedad: 11 años, 4 meses
Puntos: 401
Respuesta: Formulario que envie a email hotmail

Creas el contact.php.

Código PHP:
Ver original
  1. <?php
  2. $nombre = $_POST['nombre'];
  3. $email = $_POST['email'];
  4. $mensaje = $_POST['mensaje'];
  5. $titulo = 'ASUNTO DEL MENSAJE';
  6. $header = 'From: ' . $email;
  7. $msjCorreo = "Nombre: $nombre\n E-Mail: $email\n Mensaje:\n $mensaje";
  8.  
  9. if ($_POST['submit']) {
  10. if (mail($para, $titulo, $msjCorreo, $header)) {
  11. echo "<script language='javascript'>
  12. alert('Mensaje enviado, muchas gracias.');
  13. window.location.href = 'http://TUSITIOWEB.COM';
  14. </script>";
  15. } else {
  16. echo 'Falló el envio';
  17. }
  18. }
  19. ?>
__________________
Los usuarios que te responden, lo hacen altruistamente y sin ánimo de lucro con el único fin de ayudarte. Se paciente y agradecido.
-SOLOLINUX-