I am trying to send email in codeIgniter, I am receiving the email on example@mycompany.com
but not able to receive them in gmail
I tried this:
$this->load->library('email');
$config['useragent'] = 'CodeIgniter';
$config['smtp_host'] = 'smtp.googlemail.com';
$config['protocol'] = 'smtp';
$config['smtp_user'] = 'example@gmail.com';
$config['smtp_pass'] = '**********';
$config['smtp_port'] = 465;
$config['smtp_timeout'] = 30;
$config['wordwrap'] = TRUE;
$this->email->initialize($config);
$this->email->from('no-reply@mycompany.com', 'My company');
$this->email->to($email);
$this->email->subject('hello');
$this->email->message($message);
$this->email->set_mailtype('html');
$this->email->send();