0

我有一个奇怪的问题。

$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 电子邮件正文。在电子邮件中,它变成:

'您好,

我们的交易平台=表格上提出了新的标签请求。';

我对 $body 所做的是使用 codeigniter 的电子邮件库发送电子邮件。't' 更改为 '='。我的字符串有什么问题?

4

1 回答 1

2

这可能是一个编码问题。确保您的源文件使用与您发送的消息相同的编码。尝试将所有内容设置为 UTF-8。

于 2013-09-18T15:00:47.650 回答