我有一个奇怪的问题。
$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' 更改为 '='。我的字符串有什么问题?