1--TEST-- 2mb_send_mail() test 1 (lang=neutral) 3--SKIPIF-- 4<?php 5if (substr(PHP_OS, 0, 3) == 'WIN') { 6 die('skip.. Not valid for Windows'); 7} 8if (!function_exists("mb_send_mail") || !mb_language("neutral")) { 9 die("skip mb_send_mail() not available"); 10} 11?> 12--INI-- 13sendmail_path=/bin/cat 14mail.add_x_header=off 15--FILE-- 16<?php 17$to = 'example@example.com'; 18 19/* default setting */ 20mb_send_mail($to, mb_language(), "test"); 21 22/* neutral (UTF-8) */ 23if (mb_language("neutral")) { 24 mb_internal_encoding("none"); 25 mb_send_mail($to, "test ".mb_language(), "test"); 26} 27?> 28--EXPECTF-- 29To: example@example.com 30Subject: %s 31MIME-Version: 1.0 32Content-Type: text/plain; charset=%s 33Content-Transfer-Encoding: %s 34 35%s 36To: example@example.com 37Subject: test neutral 38MIME-Version: 1.0 39Content-Type: text/plain; charset=UTF-8 40Content-Transfer-Encoding: BASE64 41 42dGVzdA== 43