我正在尝试使用 html 表单向客户发送电子邮件。
这是控制器文件。
$email = 'jc2332@gmail.com';
$title = 'Introducing our new product!';
$msg = $this->load->view('admin/email_new_version', '', true);
$config['mailtype'] = 'html';
$this->load->library('email', $config);
$this->email->from('cs@example.com', 'company');
$this->email->to($email);
$this->email->subject($title);
$this->email->message($msg);
$this->email->send();
对我来说看起来不错,但是当我收到邮件时 html 不起作用。