下記のソースでSoftBank 912SHで文字化けします。
原因はなんでしょうか?
$mime = new Mail_mime("\n");
$body = mb_convert_encoding($body,'SJIS','UTF-8');
$mime->setHTMLBody($body);
// 出力用パラメータ
$bodyParam = array(
"head_charset" => $this->strEncoding,
"html_charset" => 'Shift_Jis',
);
$body = $mime->get($bodyParam);
$this->strHeader = $mime->headers($this->strHeader);
$mail = $this->factory("sendmail");
$ret = $mail->send($this->strTo[0], $this->strHeader, $body);
$bodyのヘッダ部に以下のmetaタグを入れていますか?
<meta http-equiv="Content-Type" content="text/html; charset=shift_jis">
コメント(0件)