我正在使用CI电子邮件模块,但无法正常工作。我没有SMTP凭据,因此请尝试使用此代码。
$this->load->library('email');
// Send Emails
$config = Array(
'mailtype' => 'html'
);
$this->email->initialize($config);
$this->email->set_newline("\r\n");
$this->email->from($from);
$this->email->to($to);
$this->email->subject($title);
$this->email->message($message);
//$this->email->send();
if ($this->email->send()) {
$this->email->clear();
return true;
} else {
die(show_error($this->email->print_debugger()));
//return false;
}
出现此错误