我在发送模板电子邮件时遇到问题。我正在尝试在发送电子邮件时加载模板(基于我在此论坛上看到的其他建议)。它看起来像这样。
// load Email Library
$this->load->library('email');
$config['mailtype'] = 'html';
$config['wordwrap'] = TRUE;
$this->email->initialize($config);
$message = $this->load->view('template_email', $data, true);
$this->email->to($to);
$this->email->from($from);
$this->email->cc($cc);
$this->email->subject($subject);
$this->email->message($message);
if (!$this->email->send())
{
echo $this->email->print_debugger();
}
else
{
echo "Email Sent";
}
但我得到并且错误“无法加载文件....”
有什么建议吗?
答案 0 :(得分:0)
试试这个:
$message = $this->load->view('email/report',TRUE);
这个问题可能是重复的。无论如何,也许这个链接可以帮助你。 How to send an email with content from a View in codeigniter