HTML:
Código HTML :
<form action="contacto-rapido.php" method="post"> <input id="Nombre:" type="text" name="nombre" placeholder="Nombre y Apellido" required="" /> <input id="Email:" type="email" name="email" placeholder="Escriba su email" required="" /> <input id="Telefono:" type="telefono" name="telefono" placeholder="Inserte su teléfono" required="" /> <textarea id="Mensaje:" name="mensaje" placeholder="Su consulta aquí" required=""></textarea> <input id="submit" type="submit" name="submit" value="Enviar" /> </form>
PHP:
Código PHP :
<?php $nombre = $_POST['nombre']; $email = $_POST['email']; $telefono = $_POST['telefono']; $mensaje = $_POST['mensaje']; $para = '[email protected]'; $titulo = 'Contacto Rápido desde la web'; $header = 'From: ' . $email; $msjCorreo = "Nombre: $nombre\n Email: $email\n Telefono: $telefono\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://sonidosdistantes.com.ar/index.html'; </script>"; } else { echo 'Falló el envio'; } } ?>
desde ya muchas gracias