Send email by Email Class in codeigniter with Gmail

前端 未结 3 1684
走了就别回头了
走了就别回头了 2020-12-03 12:58

I want send a email by Email Class in codeigniter with gmail, but i get following error:

Error:

A PHP Error was encountered
Severity: Wa

3条回答
  •  感动是毒
    2020-12-03 13:52

    this is what worked for me

    $email_config = Array(
                'protocol'  => 'smtp',
                'smtp_host' => 'ssl://smtp.googlemail.com',
                'smtp_port' => '465',
                'smtp_user' => 'someuser@gmail.com',
                'smtp_pass' => 'password',
                'mailtype'  => 'html',
                'starttls'  => true,
                'newline'   => "\r\n"
            );
    
            $this->load->library('email', $email_config);
    
            $this->email->from('someuser@gmail.com', 'invoice');
            $this->email->to('test@test.com');
            $this->email->subject('Invoice');
            $this->email->message('Test');
    
            $this->email->send();
    

提交回复
热议问题