Perdon, y gracias.
ESTES ES MI HTML:
<form method="POST"id="ContactForm" action="mail.php">
<div>
<div class="wrapper"> <span>Nombre:</span>
<input type="text" class="input" id="nombre" name:"nombre" >
</div>
<div class="wrapper"> <span>E-mail:</span>
<input type="text" class="input" id="email" name:"email" >
</div>
<div class="textarea_box"> <span>Mensaje:</span>
<textarea name="textarea" id="mensaje" name:"mensaje" cols="1" rows="1"></textarea>
</div>
<span> </span> <input type="reset" class="button" value="Borrar"/>
<input type="submit" class="button" value="Enviar"/> </div>
</form> Y ESTE ES EL PHP:
<?
$para = "[email protected]";
$nombre = $_POST["nombre"];
$mensaje = $_POST["mensaje"];
$de = $_POST["email"];
$thank="index.html";
if(mail($para,$de,$asunto,$mensaje))
echo "Enviado Correctamente";
else
echo "Fallo en envio.";
?>
ME LLEGA UN CORREO PERO ME APARECE EN SPAM
y la direccion de quien me lo envia aparece asi "
[email protected]" nose si esta bien eso...
y el mensaje me llega en blanco