Hallo,
bei beiden kommen keine nachrichten an. ist jemand so nett und schaut mal auf mein script?
quelltext bei:
www.popstar-academy.de/newSite/info.htmlDer Code von formmail.php4 wäre vielleicht auch ganz hilfreich um evtl. Fehler zu finden...
Gruß,
dimde
ohhhh, logo...
<?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);
}
mail($HTTP_POST_VARS["POPSTAR"], $HTTP_POST_VARS["subject"], $fmtMail);
echo $fmtResponse;
?>