Hallo!
Es tut mir leid. Ich spreche kleines Deutsch. Ich will lernen.
Sie müssen die "Von"-Header hinzufügen.
<?php
$recipient = "meine@email.de";
$fmtResponse= implode("", file("response.htt"));
$fmtMail= implode("", file("mail.htt"));
$from = 'my@email.de';
foreach($_POST as $key=>$val) {
$fmtResponse= str_replace("<$key>", $val, $fmtResponse);
$fmtMail= str_replace("<$key>", $val, $fmtMail);
}
if ($_POST['access'] == "irregeheim") {
mail($recipient, $_POST['subject'], $fmtMail,"From: ".$from."\n\r");
}
echo $fmtResponse;
?>