Unable to send email using PHP SMTP. Your server might not be configured to send mail using this method

前端 未结 6 622
余生分开走
余生分开走 2021-01-05 08:58

Iam using codeigniter

I exicuted the code on live server. got the following error using print_debugger()

Unable to send email using PHP SMTP.

6条回答
  •  隐瞒了意图╮
    2021-01-05 09:59

    A common cause of this is the way that CodeIgniter interacts with the SMTP server with regards to line breaks. Your SMTP server might require \r\n and CodeIgniter is using \n.

    There is an easy fix: after your $this->email->initialize(), add the following:

    $this->email->set_newline("\r\n");  
    

    That should get it working for you.

提交回复
热议问题