CodeIgniter unable to send email using PHP mail()

前端 未结 12 2124
孤街浪徒
孤街浪徒 2020-11-29 06:27

I\'m trying to send an e-mail with Codeigniter like this:

$this->load->library(\'email\');

$this->email->from(\"myemail@email.com\");
$this->         


        
12条回答
  •  天命终不由人
    2020-11-29 06:43

    Ensure that Apache can send emails.

    To check your current sendmail status: sestatus -b | grep httpd_can_sendmail

    Change it to this if it is off: sudo setsebool -P httpd_can_sendmail on

提交回复
热议问题