CodeIgniter unable to send email using PHP mail()

前端 未结 12 2133
孤街浪徒
孤街浪徒 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:38

    I read a comment in the file email.php :

    // most documentation of sendmail using the "-f" flag lacks a space after it, however
            // we've encountered servers that seem to require it to be in place.
            return mail($this->_recipients, $this->_subject, $this->_finalbody, $this->_header_str, '-f '.$this->clean_email($this->_headers['Return-Path']));
    

    "-f" flag - this problem!!!

提交回复
热议问题