moin
ich habe folgendes problem. ich möchte eine mail per php schicken, aber
es klappt i-wie nicht. ich bin am ende
das hier erscheint dann:
hallo welt
Warning: mail() [function.mail]: SMTP server response: 454 5.7.3 Client does not have permission to submit mail to this server. in C:\xampp\htdocs\email.php on line 16
ich dachte es liegt an den einstellungen, aber ich habe alles gemacht.
ich benutze xxamp, also mercury als mailserver und habe alice als anbieter und habe demenstprechend SMTP = smtp.alice.de gemacht,
das ist in php.ini:
[mail function]
; For Win32 only.
; PHP: Laufzeit-Konfiguration - Manual
SMTP = smtp.alice.de
; PHP: Laufzeit-Konfiguration - Manual
smtp_port = 25
; For Win32 only.
; PHP: Runtime Configuration - Manual
; sendmail_from = postmaster@localhost
; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
; PHP: Runtime Configuration - Manual
;sendmail_path = "\"\xampp\sendmail\sendmail.exe\" -t"
[COLOR=#000000][COLOR=#0000CC]$empfaenger [/COLOR][COLOR=#006600]= [/COLOR][COLOR=#CC0000]"meine-email@live.de"[/COLOR][COLOR=#006600];hier hatte ich meine emailadresse zum testen[/COLOR][COLOR=#0000CC][/COLOR][COLOR=#006600]
[/COLOR][COLOR=#0000CC]$absendermail [/COLOR][COLOR=#006600]= [/COLOR][COLOR=#CC0000]"email@domain.de"[/COLOR][COLOR=#006600];das habe ich immer so gelassen[/COLOR][/COLOR]
das ist der script:
ich habe folgendes problem. ich möchte eine mail per php schicken, aber
es klappt i-wie nicht. ich bin am ende
das hier erscheint dann:
hallo welt
Warning: mail() [function.mail]: SMTP server response: 454 5.7.3 Client does not have permission to submit mail to this server. in C:\xampp\htdocs\email.php on line 16
ich dachte es liegt an den einstellungen, aber ich habe alles gemacht.
ich benutze xxamp, also mercury als mailserver und habe alice als anbieter und habe demenstprechend SMTP = smtp.alice.de gemacht,
das ist in php.ini:
[mail function]
; For Win32 only.
; PHP: Laufzeit-Konfiguration - Manual
SMTP = smtp.alice.de
; PHP: Laufzeit-Konfiguration - Manual
smtp_port = 25
; For Win32 only.
; PHP: Runtime Configuration - Manual
; sendmail_from = postmaster@localhost
; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
; PHP: Runtime Configuration - Manual
;sendmail_path = "\"\xampp\sendmail\sendmail.exe\" -t"
[COLOR=#000000][COLOR=#0000CC]$empfaenger [/COLOR][COLOR=#006600]= [/COLOR][COLOR=#CC0000]"meine-email@live.de"[/COLOR][COLOR=#006600];hier hatte ich meine emailadresse zum testen[/COLOR][COLOR=#0000CC][/COLOR][COLOR=#006600]
[/COLOR][COLOR=#0000CC]$absendermail [/COLOR][COLOR=#006600]= [/COLOR][COLOR=#CC0000]"email@domain.de"[/COLOR][COLOR=#006600];das habe ich immer so gelassen[/COLOR][/COLOR]
das ist der script:
HTML-Code:
<html> <head> <title>email</title> <meta name="author" content="HB"> </head> <body text="#000000" bgcolor="#FFFFFF" link="#FF0000" alink="#FF0000" vlink="#FF0000"> <form action="email.php" method="post"> <b>Hier reinschreiben</b><br> <textarea name="text" cols="50" rows="10"></textarea> <input type="Submit" value="abschicken"> </form> </body> </html>
PHP-Code:
<?php
$text = $_REQUEST["text"];
echo $text;
$empfaenger = "meine-email@live.de";
$absendername = "Kontaktformular";
$absendermail = "email@domain.de";
$betreff = "PHP ist toll";
mail($empfaenger, $betreff, $text, "From: $absendername");
?>
Kommentar