Los script funcionan a la perfección, el unico error es que en el buzón de destino no activa como link el correo electrónico del remitente, ni aparece en la casilla de remitente.
Estos son los script.
email.php
Código PHP:
<form action="mail.php" name="form" method="post">
<p>
<input type="text" name="nombre" maxlength="50" size="30">
</p>
<p>
<input type="text" name="email" size="30" maxlength="50">
</p>
<p>
<input type="text" name="asunto" size="30" maxlength="50">
</p>
<p>
<textarea name="mensaje" wrap="virtual" cols="35" rows="5"></textarea>
</p>
<p>
<input TYPE="button" VALUE="Enviar" onClick="Validar(this.form)">
<input type="reset" value="Limpiar">
</p>
</form>
Código PHP:
<?
$destinatario="[email protected]";
$subjet=$asunto;
$espacio="\n";
$cuerpo=$mensaje.$espacio.$nombre.$espacio.$email;
mail($destinatario,$subjet,$cuerpo);
echo "<font color='#000000'face='Verdana' size='2'><b>CORREO ENVIADO CON EXITO</b><META HTTP-EQUIV=Refresh CONTENT=\"3; URL= email.php\">\n</font><br><br>";
?>