Una manito, pero te recomiendo intentar esforzarte por entender como funciona así lo puedes ir mejorando con el tiempo.
Código PHP:
<?php
{
$content='
<!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>
</head>
<body>
<div>
<p>Nombre y apellido: <b>'.$_POST[nombre].'</b></p>
<p>Empresa: <b>'.$_POST[empresa].' <b></p>
<p>Email: <b>'.$_POST[email].'</b></p>
<p>Consulta:</p>
<b>'.$_POST[consulta].'</b>
</div>
</body>
</html>
';
mail('[email protected]', 'Consulta desde la Web',$content,"MIME-Version: 1.0\nContent-type: text/html; charset=utf-8\nFrom: $_POST[nombre] < $_POST[email] >");
}
echo"<script type=\"text/javascript\"> window.location=\"http://adonde_redireccionas_despues_del_envio.com\"; </script> ";
?>
Como te mencionaba antes los campos $_POST[xxx] son tus campos en el formulario, y tu formulario tiene que contener como acción este archivo php.
Espero te sirva (es para envio en formato HTML lo puedes personalizar si lo revisas)