[PHP-dev 1172] Re: PHP-5.0.5 mb_send_mail() Bug
HOTTA Michihide
hotta @ net-newbie.com
2005年 9月 30日 (金) 13:48:44 JST
堀田@長崎市です。
On Fri, 30 Sep 2005 13:19:38 +0900, "J.Kuwamura" <juk @ rccm.co.jp> wrote:
Subject: [PHP-dev 1171] PHP-5.0.5 mb_send_mail() Bug
> 桑村です
こんにちは。
>
> php-5.0.5 の mb_send_mail() にバグがありそうです。
当方の環境では正しく送信されているように見えます。ただし、スクリ
プトを簡略化(直接 mb_send_mail() をコール)してあります。
~$ php -v
PHP 5.0.5 (cli) (built: Sep 28 2005 14:54:33)
Copyright (c) 1997-2004 The PHP Group
Zend Engine v2.0.5, Copyright (c) 1998-2004 Zend Technologies
$ php -i|grep -E '^mbstring\.'
mbstring.detect_order => no value => no value
mbstring.encoding_translation => On => On
mbstring.func_overload => 0 => 0
mbstring.http_input => auto => auto
mbstring.http_output => pass => pass
mbstring.internal_encoding => EUC-JP => EUC-JP
mbstring.language => Japanese => Japanese
mbstring.script_encoding => no value => no value
mbstring.substitute_character => no value => no value
$ cat a.php
<?php
$mail = "you @ to.domain";
$from = "My Name";
$from_email = "me @ from.domain";
$header = "From: $from <$from_email>\n";
$header .= "Reply-To: $from <$from_email>\n";
$subject = "[TEST] 【tokyo-avland】公的証明書の送付期限のお知らせ";
$message = "メールヘッダのテスト中。\n";
$message .= "メールボディーのテスト中。\r";
$message .= "テストボディー終わり。\r\n";
$message .= "テスト終了。";
mb_send_mail($mail, $subject, $message, $header);
?>
ja_send_mail() 的なことをやってくれるのが mb_send_mail() だと
思ってましたが?
--
HOTTA Michihide <hotta @ net-newbie.com>
PHP-dev メーリングリストの案内