Folgende Formmail.php liegt zugrunde:
<?php
$fmtResponse= implode("", file("response.htt"));
$fmtMail= implode("", file("mail.htt"));
foreach($HTTP_POST_VARS as $key=> $val) {
$fmtResponse= str_replace("<$key>", $val, $fmtResponse);
$fmtMail= str_replace("<$key>", $val, $fmtMail);
}
if ($HTTP_POST_VARS["access"] == "ortelius2003") {
mail($HTTP_POST_VARS["recipient"],
$HTTP_POST_VARS["subject"],
$fmtMail;);
}
echo $fmtResponse;
?>
<p> </p>
Ich habe im Formular ein Eingabefeld "email". Wenn das Mail ankommt steht als Absender "CGI-Mailer". Wie kann man das Script verändern, um den Absender aus der Forulareingabe zuzuweisen.
Sorry bin ziemlicher Anfänger und konnte mit den Anweisungen aus diversen Websites keinen Erfolg erzielen.
CU Tom