Also ich hab n Newsletter der bisjetzt wunderbar funktioniert hat. Der wurde jeden Monat rausgeschickt aber diesen Monat funktioniert er auf einmal net mehr. Der Header und "komische" Zeichen tauchen in der Nachricht auf. Und man kann sich die Nachricht nicht mehr als HTML Nachricht anzeigen lassen.
Also hier kommt mein Header ist da irgendwas falsch weil ich find den Fehler nich
$nachrichten = Textnachricht;
$nachricht = HTML Nachricht;
Also hier kommt mein Header ist da irgendwas falsch weil ich find den Fehler nich
$nachrichten = Textnachricht;
$nachricht = HTML Nachricht;
PHP-Code:
$eol="\r\n";
$mime_boundary_2 = "2_".md5(time());
$mime_boundary = md5(time());
$msg .= "Content-Type: multipart/alternative; boundary=\"".$mime_boundary_2."\"".$eol;
$msg .= "From: Test Newsletter <".c_norepMail.">".$eol;
$msg .= "MIME-Version: 1.0".$eol;
# Text Version
$msg .= "--".$mime_boundary_2.$eol;
$msg .= "Content-Description: PHP Generated Data".$eol;
$msg .= "Content-Type: text/plain; charset=iso-8859-1".$eol;
$msg .= "Content-Transfer-Encoding: 8bit".$eol.$eol;
$msg .= strip_tags(str_replace("<br>", "\n", $nachrichten)).$eol.$eol;
# HTML Version
$msg .= "--".$mime_boundary_2.$eol;
$msg .= "Content-Type: text/html; charset=iso-8859-1".$eol;
$msg .= "Content-Transfer-Encoding: 8bit".$eol.$eol;
$msg .= $nachricht.$eol.$eol;
# Subboundary Ende
$msg .= "--".$mime_boundary_2."--".$eol.$eol;
# Top-Boundary Ende
$msg .= "--".$mime_boundary."--".$eol.$eol;
Kommentar