ive recently started experiencing a problem from broadcasts made over a
mailing list i wrote some time ago.  up until now its been functioning fine,
however recently it started sending out raw html unformatted (tags etc
appearing in email), instead of the usual interpreted results.  this
coincided, as best i can tell, with my isp upgrading their server to php
4.3.0.  the only change is in the subject line as follows;

this is the subject line from a working email;
-Subject: update 10:32pm Dec 6
this is the subject line im getting now since the change (incorrect!);
-Subject: update 9:54am Jan 9 MIME-Version: 1.0 Content-Type: text/html;
charset="iso-8859-1" Content-Transfer-Encoding: base64  From: [ ******** ] <
******** > Reply-To: ********

as you can see its now putting EVERYTHING within the header on that one line
and ignoring the \n after each row (see relevant section of my code below)
..

   $br_subjectc = "$br_subjectbox\n";
   $br_subjectc .= "MIME-Version: 1.0\n";
   $br_subjectc .= "Content-Type: text/html;\n\tcharset=\"iso-8859-1\"\n";
   $br_subjectc .= "Content-Transfer-Encoding: base64\n\n";
   $br_subjectc .= "From: [$title] < $br_return >\n";
   $br_subjectc .= "Reply-To: $br_return\n";

any idea what is causing that? ive looked on php.net and i cant see anything
that catches my eye mentioned about this in the changelog. im not aware of
any alteration to email structure standards either.

tia
john


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to