【发布时间】:2019-01-11 06:53:25
【问题描述】:
我正在使用 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;
}
它给出了这个错误
【问题讨论】:
-
如消息所述,您的服务器未配置为使用配置的方法发送电子邮件。也许它设置为使用
sendmail发送而不安装sendmail?我建议使用 SMTP,因为这将使您的代码更便携,并确保更多人可以收到您的电子邮件。
标签: php codeigniter email smtp