Index: trunk/core/kernel/utility/email.php =================================================================== diff -u -r2070 -r2275 --- trunk/core/kernel/utility/email.php (.../email.php) (revision 2070) +++ trunk/core/kernel/utility/email.php (.../email.php) (revision 2275) @@ -32,7 +32,7 @@ function kEmailMessage(){ //$this->TextBoundary = uniqid(time()); $this->EmailBoundary = uniqid(time()); - $this->LineFeed = "\r\n"; + $this->LineFeed = "\n"; $this->Charset='ISO-8859-1'; $this->TransferEncoding='8bit'; $this->Body = ''; @@ -138,7 +138,7 @@ $replace = array ( "\\1\t\\2", - "\n\r", + "\n", "", "", "", @@ -395,7 +395,7 @@ ); $send_params['from'] = $this->From; // This is used as in the MAIL FROM: cmd // It should end up as the Return-Path: header - $send_params['body']="\r\n"; + $send_params['body']="\n"; if($smtp_object->connect($params) && $smtp_object->send($send_params)){ @@ -417,4 +417,4 @@ -?> \ No newline at end of file +?>