I think you can use the mail function
[html]
<html>
<body>
<?
if(isset($_POST['email']))
{
$email = $_POST['email'];
$to = "yourown@
Email.com";
$subject = $_POST['title'];
$message = $_POST['message'];
$headers = 'From: ' . $email . "\r\n" .
'Reply-To: ' . $email . "\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $message, $headers);
}
<form action="" method="post">
Email: <input type='text' size="30" name="email" /><br />
Message: <textarea name="message" /></textarea><br />
Title: <input type='text' size="30" name="title" /><br />
<input type='submit' value='Send' />
</form>
</body>
</html>
[/html]
didn't really tested it :P, think it works!