Heres what you need to do.
Create a form for the user to enter in their email address, a subject, and a message, then have the form point to this script:
<?php
$subject = "$subject";
$message = "$message";
$replyAddress = "$email";
$to = "Edgar@gmx.de";
mail($to, $subject, $message, "From: $replyAddress");
?>
Hope this helps,
Lazzerous