<snip>
2. edit Base.php change line 49 (bug in Base.php) from define('MAIL_MIMEPART_CRLF',"\n"); to define('MAIL_MIMEPART_CRLF',"\r\n");
In my experience, this would be more cross-platform reliable as: define('MAIL_MIMEPART_CRLF',"\x0d\x0a");
Since \n can mean different things on different platforms, it's possible that "\r\n" could expand to "\x0d\x0d\x0a".
-- Bill Moran Potential Technologies http://www.potentialtech.com
-- PHP Soap Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php