me funciono exactamente asi:
   Código PHP:
   
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">   
<html>   
<head>   
    <title>Procesa</title>  
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">  
</head>   
<body>  
<?   
if (!$HTTP_POST_VARS){   
?>  
<?   
}else{   
    $cuerpo = "Formulario de Citas\n";  
    $cuerpo .= $HTTP_POST_VARS["nul"] . "\n";  
    $cuerpo .= "Nombre: " . $HTTP_POST_VARS["nombre"] . "\n";  
    $cuerpo .= "Telefono: " . $HTTP_POST_VARS["telefono"] . "\n";  
    $cuerpo .= "E-Mail: " . $HTTP_POST_VARS["email"] . "\n";  
    $cuerpo .= "Comentarios: " . $HTTP_POST_VARS["comentarios"] . "\n"; 
    $headers= "FROM: " . $HTTP_POST_VARS["email"] . "\n"; 
     
   mail("[email protected]","Formulario de Citas",$cuerpo,$headers);  
 
   
}   
?>  
</body>  
</html>   
 
 
<body>  
<meta http-equiv=refresh content=0;URL="gracias_por_sus_comentarios.html">  
</body>  
</html>