Kann mir vielleicht jemand helfen, was bedeutet diese Fehlermeldung und wie kann ich sie beheben:
schreib mal mein Quelltext noch dazu:
Warning: mail(): SMTP server response: 503 Bad sequence of commands (missing RCPT) in D:\Apache - MySQL\minixampp\htdocs\email\index.php on line 44
schreib mal mein Quelltext noch dazu:
PHP:
<html>
<body>
<form action = "index.php" method = "post">
Nickname: <input type = "text" name = "nick"> <br>
Passwort: <input type = "password" name = "pass"> <br>
Email: <input type = "text" name = "mail"> <br>
<input type = "submit" name = "schicken" name = "Abschicken">
</form>
</body>
</html>
<?
$db = mysql_connect();
mysql_select_db("dbBenutzer");
mysql_query("insert into tBenutzer(Nickname, Passwort, Email) values ('$nick', md5('$pass'), '$mail')");
mysql_close($db);
$empfaenger = $mail;
$betreff = "Willkommen auf knuddels-welt";
$text = "Willkommen auf knuddels-welt,
Dein Daten sind:
------------------------------------------------------
Nickname: $nick
Passwort: $pass
-------------------------------------------------------
--------------------------------------------------------------------------------------
Mit freundlichen Grüßen
Knuddel";
mail($empfaenger, $betreff, $text);
?>