Al mandar correo desde mi web http://www.uncodemultimedia.com.ar, me da este error:
Warning: Cannot modify header information - headers already sent by (output started at /home/uncodemu/public_html/enviar.php:1) in /home/uncodemu/public_html/enviar.php on line 14
El server es Wiroos, y lo que tengo es un correo ahi :
[email protected], al cual quiero enviar los mensajes desde la web.
Loa archivos que uso son:
el php..........enviar.php
Código:
Código PHP :
<? $mail="[email protected]"; $nombre = $_POST['nombre']; $telefono = $_POST['telefono']; $email = $_POST['email']; $mensaje = $_POST['mensaje']; $thank="gracias.html"; $message = " nombre:".$nombre." telefono:".$telefono." email:".$email." mensaje:".$mensaje.""; if (mail($mail,"Formulario de Consulta",$message)) header ("Location: $thank" ); ?>
y en el html la parte del formulario....:
Código:
Código :
<div id="sidebar"> <div> <h2 align="center" class="Estilo11 title Estilo12 Estilo15"><a href="mailto:[email protected]" class="Estilo5">[email protected]</a></h2> </div> <form id="form1" method="post" action="enviar.php"> <p align="center">* Nombre:<br /> <label> <input name="nombre" type="text" id="nombre" size="50" /> </label> <br /> *Telefono:<br /> <input name="telefono" type="text" id="telefono" size="50" /> <br /> * Email:<br /> <input name="email" type="text" id="email" size="50" /> <br /> * Mensaje:<br /> <textarea name="mensaje" cols="50"rows="5" class="Estilo11" id="mensaje"></textarea> <br /> <label> <input name="Submit" type="submit" class="Estilo13" onclick="MM_validateForm('nombre','','R','telefono','','RisNum','email','','RisEmail','mensaje','','R');return document.MM_returnValue" value="Enviar Formulario" /> </label> </p> <p align="center" class="Estilo19">*Datos obligatorios</p> </form> <div align="center"></div> </div> <p> </p>
Los correos llegan pero no aparese la pagin de agradecimiento en html y aparese la leyenda del error
Gracias por la ayuda.