奇妙な問題があります。
$body = 'Hi there, <br /><br />
A new label request has been made on Our Trading Platform.';
$this->CI->email->from($from, 'Our Trading Platform');
$this->CI->email->to($to);
$this->CI->email->cc($cc);
$this->CI->email->subject($subject);
$this->CI->email->message($body);
if($this->CI->email->send())
return TRUE;
else
echo $this->CI->email->print_debugger();
上記は私のphpメール本文です。メールでは次のようになります。
'こんにちは、
私たちのトレーディング Pla=form で新しいラベルのリクエストが行われました。';
$body で行うことは、codeigniter のメール ライブラリを使用してメールを送信することです。「t」が「=」に変わります。私の文字列の何が問題になっていますか?