Ver Mensaje Individual
  #13 (permalink)  
Antiguo 08/09/2015, 07:24
Avatar de xfxstudios
xfxstudios
 
Fecha de Ingreso: junio-2015
Ubicación: Valencia - Venezuela
Mensajes: 2.448
Antigüedad: 9 años, 5 meses
Puntos: 263
Respuesta: Configurar formulario web una pagina

mira como lo estoy probando aca y funciona perfecto:

Código PHP:
Ver original
  1. <?php
  2. if(empty($_POST['boton'])){}
  3. else{
  4.     $nombre = $_POST['nombre'];
  5.     $correo = $_POST['correo'];
  6.     $asunto = $_POST['asunto'];
  7.    
  8.    
  9. $para      = "[email protected]";
  10. $titulo    = "EL TITULO";
  11.  
  12. $mensaje   = "Mensaje enviado por: ".$nombre."\n";
  13. $mensaje  .= "E-mail: ".$correo;
  14. $mensaje  .= "Asunto: ".$asunto;
  15.  
  16. $cabeceras = 'From: [email protected]' . "\r\n" .
  17.     'Reply-To: [email protected]' . "\r\n" .
  18.     'X-Mailer: PHP/' . phpversion();
  19.  
  20. mail($para, $titulo, $mensaje, $cabeceras);
  21.     if(mail){
  22.         echo "
  23.                <script language='JavaScript'>
  24.                alert('Mensaje Enviado Correctamente');
  25.                </script>";
  26.     } else {
  27.         echo "
  28.                <script language='JavaScript'>
  29.                alert('Fallo el envio del mensaje');
  30.                </script>";
  31.     }
  32.  
  33. }
  34. ?>
  35. <form name="form1" action="" method="post">
  36. <input type="text" name="nombre"/><br><br>
  37. <input type="text" name="correo"/><br><br>
  38. <input type="text" name="asunto"/><br><br>
  39. <input type="submit" name="boton" value="Enviar"/>
  40. </form>
__________________
[email protected]
HITCEL