Aqui hay uno mas simple y bonito,a mi me sirvio muy bien
Código PHP:
// De
$from = "From:".$_POST['email']."\n";
$from .= "MIME-version: 1.0\n";
$from .= "Content-type: text/html; charset= iso-8859-1\n";
// Email del webmaster(Para)
$to = "[email protected]";
// El titulo
$subject = $_POST['titulo'];
// El mensaje
$message = "Nombre : ".$_POST['nombre']. "<br>".
"Email : ". $_POST['email']. "<br>".
"Mensaje : ". $_POST['mensaje']. "<br>";
//envia el mensaje
mail($to,$subject,$message,$from);
saludossssssssssssss