- 论坛徽章:
- 1
|
as4 系统安装后添加了日文语言,sendmail系统自带,PHP 5.2.1用mail函数发送日文邮件,客户端如果是中文系统用outlook收的的正常,但是客户端如果是日文操作系统就是乱码。
<?php
$to = 'nobody@exmple.com.cn';
$subject = 'ソフトウェア';
$message = '翻訳の方向の誤って招く翻訳の結果の誤り翻訳の方向の誤って招く翻訳の結果の誤り翻訳の方向の誤って招く翻訳の結果の誤り翻訳の方向の誤って招く翻訳の結果の誤り';
$headers = 'MIME-Version: 1.0' . "\r\n". 'Content-type: text/html; charset="Shift_JIS" '."\r\n ". "\r\n" . 'From: webmaster@exmple.com.cn' . "\r\n" . 'Reply-To: webmaster@exmple.com.cn' . "\r\n" . 'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $message, $headers);
?>
[ 本帖最后由 greysky-zfj 于 2007-11-19 18:01 编辑 ] |
|