formulario.html
Código HTML:
Ver original
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta name="description" content=""> <meta name="keywords" content=""> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <meta name="language" content="es"> </head> <body> <div> <form method="post" action="formulario.php"> <input type="text" name="nombre" size="25" maxlength="40" class="campos"> <br> <br> <input type="text" name="email" size="25" maxlength="40" class="campos"> <br> <br> <br> <br> <input name="submit" type="submit" class="boton" value="Enviar"> <br> <br> </form> </div> </body> </html>
formulario.php
Código PHP:
Ver original
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Formulario</title> <meta name="description" content=""> <meta name="keywords" content=""> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <meta name="language" content="es"> </head> <body> <div> <?php $subject = "Grupo de empresas: ".$_POST['nombre'].", ".$_POST['empresa']; $nombre = $_POST['nombre']; $empresa = $_POST['empresa']; $telefono = $_POST['telefono']; $email = $_POST['email']; $mensaje = $_POST['mensaje']; $formato = "Content-type: text/html; charset=iso-8859-1\r\n"; $body = "<font face='arial, helvetica, sans-serif' size='2'><p>Se ha solicitado desde la web que se le envíe información a:</p> <table width='700' border='0' align='left'> <tr> <td width='50'><font size='2'><b>Nombre:</b></td> <td width='650'><font size='2'>".$nombre."</td> </tr> <tr> <td><font size='2'><b>E-mail:</b></td> <td><font size='2'>".$email."</td> </tr> <tr> <td valign='top'><font size='2'><b>Mensaje:</b></td> <td><font size='2'>".$mensaje."</td> </tr> </table></font>"; echo "Gracias por su interés. En breve recibirá una respuesta."; } else { echo "El mensaje no ha sido enviado, por favor inténtelo de nuevo."; } ?> </div> </body> </html>