<?php
$mail='[email protected]';
$nombre = $_POST['nombre'];
$email = $_POST['email'];
$mensaje = $_POST['mensaje'];
$thank="gracias.html";
$message = "nombre:".$nombre."
$message = "email:".$email."
$message = "mensaje:".$mensaje.";
if (mail($mail,"Formulario de Consulta",$message))
Header ("Location: $thank" );
?>
el html...
<form action="enviar.php" method="post" target="_self" id="ContactForm">
<fieldset>
<div>
<div class="wrapper"> <span>Nombre:</span>
<input type="text" class="input" >
</div>
<div class="wrapper"> <span>E-mail:</span>
<input type="text" class="input" >
</div>
<div class="textarea_box"> <span>Su Mensaje:</span>
<textarea name="textarea" cols="1" rows="1"></textarea>
</div>
<a href="#" class="button1" onClick="document.getElementById('ContactForm').submit()">Enviar</a> <a href="#" class="button1" onClick="document.getElementById('ContactForm').reset()">Borrar</a> </div>
</fieldset>
</form>
atento a vuestros post! Gracias por ayudar a un aprendiz!