codeigniter でメールを送信するために次のコードを使用しています
$this->load->library('email');
$this->email->set_mailtype('html');
$this->email->from('test@example.com', 'Your Name');
$this->email->to('test2@example.com');
$this->email->subject('Email Test');
$this->email->message('Testing the email class.');
$this->email->send();
echo $this->email->print_debugger();
ここで私はエラーを取得しています
Unable to send email using PHP mail(). Your server might not be configured to send mail using this method.
しかし、メールの種類がテキストに変更された場合、つまり
$this->email->set_mailtype('text');
正常に動作します。なぜそうなのですか?