Codeigniter send mail using gmail is not working, just reloading

大憨熊 提交于 2019-12-02 11:32:33

问题


I tried to send a email using gmail server with following configurations.

    $config = Array(
        'protocol' => 'smtp',
        'smtp_host' => 'ssl://smtp.googlemail.com',
        'smtp_port' => 465,
        'smtp_user' => 'dinukathilanga@gmail.com',
        'smtp_pass' => '2334444@',
        'mailtype'  => 'html', 
        'charset'   => 'iso-8859-1',
        'starttls'  => true,
   );

   $this->load->library('email', $config);

   $this->email->from('dinukathilanga@gmail.com', 'Dinuka Thilanga');
   $this->email->to('bbelekkaya@gmail.com');
   $this->email->subject('Email Test');
   $this->email->message('Testing the email class.');

   $this->email->send();

   echo $this->email->print_debugger(); die;

I send mail after the form submission. But the thing is page is never ending reloading. Please tell me what is the issue?


回答1:


Put that

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

Between

$this->load->library('email', $config);

$this->email->from('dinukathilanga@gmail.com', 'Dinuka Thilanga');

So the final code looks similar to

$this->load->library('email', $config);
$this->email->set_newline("\r\n");
$this->email->from('dinukathilanga@gmail.com', 'Dinuka Thilanga');

It works for me.



来源:https://stackoverflow.com/questions/18352956/codeigniter-send-mail-using-gmail-is-not-working-just-reloading

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!