<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<head>
<title>Email</title>
</head>
<body bgcolor="#6699ff">
<form method="post" action="mail.php">
<p><strong>Name:</strong></p>
<input type="Text" name="Sender_name" size="30"></p>
<p><strong>Email-Address:</strong></p>
<input type="Text" name="Sender_email" size="30"></p>
<p><strong>Message:</strong></p>
<textarea name="message" cols=40 rows=6 wrap="virtual"></textarea></p>
<input type="Submit" value="Email absenden"></p>
</form>
<?
$msg = "Diese Email wurde von der Seite xxxx gesendet\n";
$msg .= "Name des Absenders:\t$Sender_name\n";
$msg .= "Email-Addresse des Absenders:\t$message\n\n";
$msg .= "Message:\t$message\n\n";
$to = "xxxxxx@yahoo.com";
$subject = "Message from .....";
$mailheader = "Reply to: $sender_email\n";
mail($to, $subject,$msg, $mailheader);
?>
Solomon
The script might be a mixture of Englisch and Deutsch. Any how look at the syntax and how it works.
If there is any difficulty, try to post your request again,
Friendly