tengo un problema con un formulario de una web que estoy haciendo. No consigo que funciona bien. No llegan los mails y en la URL aparecen parametros.
Os pego aquí abajo los códigos tanto del archivo php como de la parte de código del html.
Muchas gracias por vuestra ayuda.
CODIGO HTML
Código PHP:
<tr><td width="364" height="131"> <form enctype="multipart/form-data" method="POST" id="form" action="enviar.php"> <table> <tr> <td width="4" height="131"></td> <td width="184" height="131"> <table> <tr> <td width="184" height="30"> <input type="text" value="Tu nombre:" name="nombre"><br> </td> </tr> <tr> <td width="184" height="30"> <input type="text" value="Teléfono:" name="telefono"><br> </td> </tr> <tr> <td width="184" height="71"> <input type="text" value="E-mail:" name="mail"><br> </td> </tr> </table> </td> <td width="176" height="131"> <textarea name="textarea" cols="35" rows="35" name="mensaje">Escribe tu mensaje:</textarea><br> <br style="line-height:5px "> <img alt="" src="images/spacer.gif" width="38" height="1"><a href="#" class="more" onClick="document.getElementById('form').reset()"> borrar</a> <a href="#" class="more" onClick="document.getElementById('form').submit()" > enviar</a> </td> </tr> </table> </form> </td></tr>
ARCHIVO PHP
Código PHP:
<?php
$nombre = $_POST['nombre'];
$mail = $_POST['mail'];
$empresa = $_POST['empresa'];
$header = 'From: ' . $mail . " \r\n";
$header .= "X-Mailer: PHP/" . phpversion() . " \r\n";
$header .= "Mime-Version: 1.0 \r\n";
$header .= "Content-Type: text/plain";
$mensaje = "Este mensaje fue enviado por " . $nombre . ", de la empresa " . $empresa . " \r\n";
$mensaje .= "Su e-mail es: " . $mail . " \r\n";
$mensaje .= "Mensaje: " . $_POST['mensaje'] . " \r\n";
$mensaje .= "Enviado el " . date('d/m/Y', time());
$para = '[email protected]';
$asunto = 'Contacto web';
mail($para, $asunto, utf8_decode($mensaje), $header);
echo '&estatus=ok&';
?>