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 が機能しません。