CodeIgniter unable to send email using PHP mail()

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

    Clearly, there does not seem to be a definitive 'one size fits all' answer. What worked for me was changing

    $config['protocol'] = 'smtp';
    

    TO:

    $config['protocol'] = 'mail';
    

    Hope this helps...

提交回复
热议问题