2002-11-23 13:26:18 +08:00
|
|
|
|
--TEST--
|
|
|
|
|
mb_send_mail() test 7 (lang=Korean)
|
|
|
|
|
--SKIPIF--
|
|
|
|
|
<?php
|
|
|
|
|
if (@mb_send_mail() === false || !mb_language("Korean")) {
|
|
|
|
|
die("skip mb_send_mail() not available");
|
|
|
|
|
}
|
|
|
|
|
if (!@mb_internal_encoding('ISO-2022-KR')) {
|
2004-12-16 20:34:32 +08:00
|
|
|
|
die("skip ISO-2022-KR encoding is not available on this platform");
|
2002-11-23 13:26:18 +08:00
|
|
|
|
}
|
|
|
|
|
?>
|
|
|
|
|
--INI--
|
2003-09-26 19:08:54 +08:00
|
|
|
|
sendmail_path=/bin/cat
|
2002-11-23 13:26:18 +08:00
|
|
|
|
--FILE--
|
|
|
|
|
<?php
|
|
|
|
|
$to = 'example@example.com';
|
|
|
|
|
|
|
|
|
|
/* default setting */
|
|
|
|
|
mb_send_mail($to, mb_language(), "test");
|
|
|
|
|
|
|
|
|
|
/* Korean */
|
|
|
|
|
if (mb_language("korean")) {
|
|
|
|
|
mb_internal_encoding('EUC-KR');
|
|
|
|
|
mb_send_mail($to, "<22><EFBFBD>Ʈ ".mb_language(), "<22><EFBFBD>Ʈ");
|
|
|
|
|
}
|
|
|
|
|
?>
|
|
|
|
|
--EXPECTF--
|
|
|
|
|
To: example@example.com
|
|
|
|
|
Subject: %s
|
|
|
|
|
Mime-Version: 1.0
|
|
|
|
|
Content-Type: text/plain; charset=%s
|
|
|
|
|
Content-Transfer-Encoding: %s
|
|
|
|
|
|
2003-08-08 18:52:50 +08:00
|
|
|
|
%s
|
2002-11-23 13:26:18 +08:00
|
|
|
|
To: example@example.com
|
|
|
|
|
Subject: =?ISO-2022-KR?B?GyQpQw5FVz06Ri4PIEtvcmVhbg8=?=
|
|
|
|
|
Mime-Version: 1.0
|
|
|
|
|
Content-Type: text/plain; charset=ISO-2022-KR
|
|
|
|
|
Content-Transfer-Encoding: 7bit
|
|
|
|
|
|
|
|
|
|
$)CEW=:F.
|