Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unable to send email using SMTP gmail config in codeigniter 3

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['protocol'] = 'smtp';
    $config['smtp_crypto'] = 'ssl';
    $config['smtp_host'] = 'smtp.gmail.com';
    $config['smtp_port'] = '465';
    $config['smtp_user'] = '**********@gmail.com';
    $config['smtp_pass'] = '********';
    $config['mailtype'] = 'html';
    $config['charset'] = 'utf-8';
    $config['newline'] = "\r\n";
    $config['wordwrap'] = TRUE;
    $config['smtp_timeout'] = 30;
    $this->email->initialize($config);
    $this->email->from('[email protected]', 'admin');
    $this->email->to('[email protected], [email protected]');
    $this->email->subject('Registration Verification:');
    $message = "Thanks for signing up! Your account has been created...!";
    $this->email->message($message);
    if ( ! $this->email->send()) {
        show_error($this->email->print_debugger());
    } 

}

enter image description here

enter image description here

How Can I solve this error ? could please favor to me

like image 493
Siddhu Avatar asked Dec 24 '22 03:12

Siddhu


1 Answers

Are you try this?

$config = Array(
'protocol' => 'smtp',
'smtp_host' => 'ssl://smtp.googlemail.com',
'smtp_port' => 465,
'smtp_user' => 'xxx',
'smtp_pass' => 'xxx',
'mailtype'  => 'html', 
'charset'   => 'iso-8859-1'
);
$this->load->library('email', $config);
$this->email->set_newline("\r\n");

// Set to, from, message, etc.

$result = $this->email->send();

And make sure you had setting your email account with Allowing less secure apps to access your account

like image 107
Quynh Nguyen Avatar answered Dec 26 '22 15:12

Quynh Nguyen