I hope this helps:
I have requested the same thing from this site before and this is what we came up with...
<fieldset>
<legend>Feedback</legend>
<form method="post">
<label for="fusername">Username:</label>
<br>
<input name="fusername" class="input-field" id="fusername" type="text">
<br>
<label for="feedback">Feedback:</label>
<br>
<textarea name="feedback" class="textarea" id="feedback" type="text" rows="5" cols="70"></textarea>
<input name="submit1" value="Submit" class="submit-button" id="submit1" type="submit">
<?php if(isset($_POST['submit1']))
{ $to = "YOU@YOUREMAIL.COM";
$fusername = $_POST['fusername'];
$feedback = $_POST['feedback'];
mail($to, $fusername, $feedback);
echo "Your mail has been sent!";
} ?>
</form>
</fieldset>
Basically this code will create a <fieldset> and a button called "submit1" which when pressed will send you and email; without the client's email client (outlook, thunderbird or whatever) opening, it will just go straight to you at
YOU@YOUREMAIL.COM.
I hope this is what you are looking for
My original post is here:
http://www.devppl.com/forum/sending-form-via-email-with-php-vt2803.html?highlight=