sigo todas las instrucciones que hay en varios temas de ustedes con respecto a esto y he cambiado miles de veces el send.php pero no hay caso... el mail me llega, pero me sale esto:
Este mensaje fue enviado por
Su e-mail es:
Enviado el 03/02/2009
Como ven, sale en blanco la información y ya no se que hacer para que me salga el mail...
el php es solo para que me llegue el mail de quienes se inscriban...
adjunto el .html y el .php para que lo vean y si hay algun error, porfavor haganmelo saber...
Código HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>kmzero.cl!!!</title> </head> <body> <div align="center"> <p> </p> <p> </p> <p> </p> <p> </p> <table width="650" border="1" align="center" cellpadding="1"> <tr> <td width="640" height="304"><table width="611" align="center"> <tr align="center"> <td width="272" height="251" valign="middle"><p><img src="km5.jpg" width="267" height="267" align="middle" /></p></td> <td width="23" align="left" valign="middle"> </td> <td width="300" align="left" valign="middle"><p> </p> <p><strong>Pronto... Inscribete!</strong></p> <p> <label>e-mail: <input type="text" name="mail" id="mail" /> </label> </p> <form id="form1" name="form1" method="post" action="send.php"> <p> <input type="submit" name="Enviar" id="Enviar" value="Enviar" /> </p> </form> <p> </p></td> </tr> </table></td> </tr> </table> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> </div> </body> </html>
Código PHP:
<?
$mail = $_POST['mail'];
$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 " . $mail . " \r\n";
$mensaje .= "Su e-mail es: " . $mail . " \r\n";
$mensaje .= "Enviado el " . date('d/m/Y', time());
$para = '[email protected]';
$asunto = 'Usuario kmzero';
mail($para, $asunto, utf8_decode($mensaje), $header);
echo '<h2>Gracias!</h2>
<p>Tu email ha sido enviado, preparate para kmzero.cl.</p>';
?>
Gracias de antemano!