Hallo zusammen
ich habe einfaches HTML Formular gebastelt das ausgefüllt per Email verschickt wird:
Nun hab ich das Problem, dass täglich Mails wie diese unten reinkommen:
was kann ich dagegen tun?
ich habe einfaches HTML Formular gebastelt das ausgefüllt per Email verschickt wird:
PHP-Code:
$email_header = "From: ".$email;
$text = "Request-URI: ".$_SERVER["REQUEST_URI"]."\n";
$text .= "User-Agent: ".$_SERVER["HTTP_USER_AGENT"]."\n";
$text .= "Remote-Addr: ".$_SERVER["REMOTE_ADDR"]."\n";
$text .= "Remote-Port: ".$_SERVER["REMOTE_PORT"]."\n\n";
$text .= "Firma: ".$firma."\r\nName: ".$name."\r\nTelefon: ".$telefon."\r\nEmail: ".$email."\r\nAnliegen:\r\n".$anliegen;
$text = str_replace("\r\n", "\n", $text);
$text = stripslashes($text);
$text = str_replace("%quotes%", "\"", $text);
$text = stripslashes($text);
$subject = "Kontaktformular Anliegen";
$subject = stripslashes($subject);
$subject = str_replace("%quotes%", "\"", $subject);
$subject = stripslashes($subject);
$address="info@aragorn.ch";
$mail_send = mail($address,$subject,$text,$email_header);
f262f69df0515838bf0f3f78e73105d5
.
Request-URI: /cntKontakt.html
User-Agent:
Remote-Addr: 216.187.73.58
Remote-Port: 59615
Firma: t9456@luisa.ch
Name: t9456@luisa.ch
Telefon: t9456@luisa.ch
Email: clothes
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Subject: less quizzical than
bcc: charleslegbe@aol.com
f262f69df0515838bf0f3f78e73105d5
.
Anliegen:
t9456@luisa.ch
.
Request-URI: /cntKontakt.html
User-Agent:
Remote-Addr: 216.187.73.58
Remote-Port: 59615
Firma: t9456@luisa.ch
Name: t9456@luisa.ch
Telefon: t9456@luisa.ch
Email: clothes
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Subject: less quizzical than
bcc: charleslegbe@aol.com
f262f69df0515838bf0f3f78e73105d5
.
Anliegen:
t9456@luisa.ch
was kann ich dagegen tun?
Kommentar