我正在使用以下代码在 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');
它工作正常。为什么会这样?