|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-01-24 12:18 UTC] sugan_b at yahoo dot co dot in
[2006-01-25 10:58 UTC] sniper@php.net
[2006-02-06 15:09 UTC] hirokawa@php.net
[2006-02-17 11:15 UTC] sugan_b at yahoo dot co dot in
[2006-04-10 13:07 UTC] sniper@php.net
[2006-04-17 15:23 UTC] hirokawa@php.net
[2006-04-25 01:00 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 15 19:00:01 2025 UTC |
Description: ------------ A small part of my application(using only PHP 5.1.2 and Apache 2.2.0) incorporates mailing functionality which uses "mb_encode_mimeheader()".I am using ISO-2202-JP charset but Multibyte characters written in ISO-2202-JP charset code are not sent to the receiver correctly. Reproduce code: --------------- index.php <!-- Start of index.php file --> <html> <head> <meta http-equiv="Content-type" content="text/html; charset=EUC-JP"> <title>test</title> </head> <body> <form method="POST" action="send.php"> To??<input type="text" name="to" size="32" maxlength="128" value="sugan_b@yahoo.co.in"/><br> Subject??<input type="text" name="subject" size="128" maxlength="12 8" value="???????? ?????Subject??ʸ?????????Ƥ??ޤ??ޤ?"/><br> <br> <input type="submit" value="send" /> </form> </body> </html> <!-- End of index.php file --> send.php: <!-- Start of send.php file --> <?php function mailSend($from, $to, $subject, $message) { $encoded= mb_convert_encoding($subject, "ISO-2022-JP", "EUC-JP"); $sub_mime = mb_encode_mimeheader($encoded, "ISO-2022-JP", "B", "\r\n"); $body = mb_convert_encoding($message, "ISO-2022-JP", "EUC-JP"); $mp = popen("/usr/sbin/sendmail -f $from $to", "w"); fputs($mp, "Content-Transfer-Encoding: 7bit\r\n"); fputs($mp, "From: ".$from."\r\n"); fputs($mp, "To: ".$to."\r\n"); fputs($mp, "Subject: ".$sub_mime."\r\n"); fputs($mp, "MIME-Version: 1.0\r\n"); fputs($mp, "X-Mailer: test php\r\n"); fputs($mp, "Content-Type: text/plain; charset=\"iso-2022-jp\""); fputs($mp, "\r\n"); fputs($mp, "$body\r\n"); pclose($mp); } ?> <html> <head> <meta http-equiv="Content-Type" content="text/html;charset=EUC-JP"> </head> <body> <?php $from = "sugan_b@yahoo.co.in"; $subject = $_POST['subject']; $to = $_POST['to']; $message = "???????Ƥ????ä????Ȥ????Τ餻???ޤ???\r\n"; mailSend($from, $to, $subject, $message); ?> Mail Sending has Completed. </body> </html> <!-- End of send.php file --> Actual result: -------------- Actual Result: The value of Subject field : 問合】 メールのSubjectが8;z2=$1$7$F$7$^$$$^$9 I have configured php using --enable-mbstring=all option.