Habe folgende Fehlermeldung:
Warning: Wrong parameter count for mail() in /httpd/www/text/mail.php on line 49
Warning: Cannot add header information - headers already sent by (output started at /httpd/www/text/mail.php:49) in /httpd/www/text/mail.php on line 51
Hier das Script im Ausschnitt ab Zeile 42
Was ist hier falsch? Habe das Selbe Script auf einen anderen Linux-Server zu laufen, ohne Fehlermeldung
Warning: Wrong parameter count for mail() in /httpd/www/text/mail.php on line 49
Warning: Cannot add header information - headers already sent by (output started at /httpd/www/text/mail.php:49) in /httpd/www/text/mail.php on line 51
Hier das Script im Ausschnitt ab Zeile 42
Code:
$m1 ="Bestellung aus ihren Shop"; $m2 ="Auftragsbestätigung von"; $maildata[body] = "Eine Bestellung wurde abgesendet:\n$bestellteartikel\nBestellerdaten:\n$Vorname $Nachname\n$Strasse\n$PLZ $Ort\n\nTelefon: $Telefon\nFax: $Fax\n\neMail: $beMail\n\nLieferung: $Lieferung\n\nKommentar: $Kommentar\n\nBestelldatum: ".date("d-m-Y"); $mailzusatz = "\nBitte denken Sie daran bei Vorkasse, die Überweisung auf folgendes Konto zutätigen:unter Angabe Ihres Namen.\n"; mail($sales, $m1, $maildata[body1] ,"From: $beMail\r\n"); // Zeile 49 mail($beMail, $m2, $maildata[body1] , $mailzusatz ,"From: $sales\r\n"); } header("Location: danke.php"); //Zeile 51
Kommentar