Unable to send email using SMTP gmail config in codeigniter 3

前端 未结 3 1186
醉话见心
醉话见心 2021-01-13 14:01

Below are my code and I refer all examples in stack overflow and codeigniter user guide. still I unable to solve this

public function send()
{
    $config[\         


        
3条回答
  •  逝去的感伤
    2021-01-13 14:32

    Quỳnh Nguyễn's answer worked for me too. However I think it's worth pointing out that my code fails unless I put the line

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

    Without that line, gmail complaints about wrong user/password :|

    Regards

提交回复
热议问题