ID: 26036 Comment by: john dot g at envent dot co dot za Reported By: topitz at definiens dot com Status: Closed Bug Type: Mail related Operating System: Win2k PHP Version: 4.3.3 New Comment:
I am using PHP 4.3.4 and am still getting the same problem when sending base64 encoded e-mails through IIS5's SMTP server on Win2k. Previous Comments: ------------------------------------------------------------------------ [2003-11-05 00:33:44] [EMAIL PROTECTED] This is fixed in PHP 4.3.4. ------------------------------------------------------------------------ [2003-10-30 06:22:00] topitz at definiens dot com Description: ------------ I use the SendMail() from the php.net (->[EMAIL PROTECTED]). Till now it works fine, but now i updated the webserver to IIS5 on Win2k from IIS4 on NT4, and now the base64 encoding seems to work wrong (HTML and Attachment part). The SMTP Server is Linux. Mail will received with Outlook. I tried already to change the charset from iso-8859-1 to utf-8, but it doesn't becomes better. This problem i got only with Win2k/IIS5! Reproduce code: --------------- $TEXT="Hallo, this a test for my email program. Hallo, this a test for my email program. ....long text with breaks .... test for my email program. Hallo, this a test for my email program."; $HTML=false; if (SendMail( "[EMAIL PROTECTED]","PHP Apache Webmailer", //sender "[EMAIL PROTECTED]","Tiberius Opitz", //recipient "Testmail", //subject $TEXT,$HTML,$ATTM)) echo "Mail send successfull."; function SendMail($From,$FromName,$To,$ToName,$Subject,$Text,$Html,$AttmFiles){ ... see php.net } Expected result: ---------------- the script should send a mail with multipart data (text/html/attachment) and print a success message after sending. Actual result: -------------- I got the email abreviated, but with additional characters (wrong decoded)like: ܈^H[XZ[›Ùܘ[KƒO... I've the same problem with attechments. ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=26036&edit=1