Hallo Leute,
ich habe Mail Enable Standard installiert und sende mit folgendem PHP-Skript E-Mails an hotmail.de:
<?php
// Melde alle PHP Fehler
error_reporting(E_ALL);
$kemail = "movie1978@hotmail.de";
$betreff = "blabla";
$text = "bkabk";
$xtra = "From: Webmaster <webmaster@battlets.de>\n";
$xtra .= "Reply-to: Webmaster <webmaster@battlets.de>\n";
@mail($kemail,$betreff,$text,$xtra, "-f webmaster@battlets") OR $mailfehler = 1;
echo $mailfehler;
?>
Als Fehler bekomme ich dann immer folgendes:
Hat jemand eine Idee woran das liegen kann?
Danke im Voraus!
ich habe Mail Enable Standard installiert und sende mit folgendem PHP-Skript E-Mails an hotmail.de:
<?php
// Melde alle PHP Fehler
error_reporting(E_ALL);
$kemail = "movie1978@hotmail.de";
$betreff = "blabla";
$text = "bkabk";
$xtra = "From: Webmaster <webmaster@battlets.de>\n";
$xtra .= "Reply-to: Webmaster <webmaster@battlets.de>\n";
@mail($kemail,$betreff,$text,$xtra, "-f webmaster@battlets") OR $mailfehler = 1;
echo $mailfehler;
?>
Als Fehler bekomme ich dann immer folgendes:
05/21/08 22:25:08 SMTP-IN 9E60D9A9310C43069DD41FA182D7CB00.MAI 388 127.0.0.1 RCPT RCPT TO:<movie1978@hotmail.de> 250 Requested mail action okay, completed 43 32
05/21/08 22:25:08 SMTP-IN 9E60D9A9310C43069DD41FA182D7CB00.MAI 388 127.0.0.1 DATA DATA 354 Start mail input; end with <CRLF>.<CRLF> 46 6
05/21/08 22:25:09 SMTP-OU 24A2738D072949CDACBF0700E01C9C38.MAI 500 65.54.244.72 CONN 220 bay0-mc4-f1.bay0.hotmail.com Sending unsolicited commercial or bulk e-mail to Microsoft's computer network is prohibited. Other restrictions are found at Microsoft Anti-Spam Policy. Violations will result in use of equipment located in California and other states. Wed, 21 May 2008 13:25:09 -0700 0 310
05/21/08 22:25:09 SMTP-IN CE75D27C7E4747278E5C88CF64298564.MAI 388 127.0.0.1 QUIT QUIT 221 Service closing transmission channel 42 6
05/21/08 22:25:09 SMTP-OU 24A2738D072949CDACBF0700E01C9C38.MAI 500 65.54.244.72 EHLO EHLO S180.battle55-gaming.de 250-bay0-mc4-f1.bay0.hotmail.com (3.5.0.22) Hello [85.114.141.180] 30 187
05/21/08 22:25:09 SMTP-OU 24A2738D072949CDACBF0700E01C9C38.MAI 500 65.54.244.72 MAIL MAIL FROM:<Webmaster <webmaster@battlets.de> SIZE=846 501 Invalid Address 61 21
05/21/08 22:25:10 SMTP-OU 24A2738D072949CDACBF0700E01C9C38.MAI 500 65.54.244.72 QUIT QUIT 221 bay0-mc4-f1.bay0.hotmail.com Service closing transmission channel 6 71
05/21/08 22:25:10 SMTP-IN 76F7F8F06954414F8753AEC51B09B56A.MAI 424 127.0.0.1 220 S180.battle55-gaming.de ESMTP MailEnable Service, Version: 1.983-- ready at 05/21/08 22:25:10 0 0
05/21/08 22:25:10 SMTP-OU 24A2738D072949CDACBF0700E01C9C38.MAI 476 127.0.0.1 CONN 220 S180.battle55-gaming.de ESMTP MailEnable Service, Version: 1.983-- ready at 05/21/08 22:25:10 0 99
Hat jemand eine Idee woran das liegen kann?
Danke im Voraus!
Last edited by a moderator: