I\'m trying to send an e-mail with Codeigniter like this:
$this->load->library(\'email\'); $this->email->from(\"myemail@email.com\"); $this->
Ensure that Apache can send emails.
To check your current sendmail status: sestatus -b | grep httpd_can_sendmail
sestatus -b | grep httpd_can_sendmail
Change it to this if it is off: sudo setsebool -P httpd_can_sendmail on
sudo setsebool -P httpd_can_sendmail on