I a trying to send an email with codeigniter. here is the content of email.php config file.
<?php
$config=
array(
'protocol'=>'smtp',
'useragent'=>'Camerbitcoin',
'smtp_host'=>'smtp.gmail.com',
'smtp_user'=>'myemail@gmail.com',
'smtp_pass'=>'my password',
'smtp_port'=>'587',
'mailtype'=>'html',
);
and here the code that send the email.
$this->email->from('myemail@gmail.com','Compagny name');
$this->email->to('receiver@yahoo.fr');
$this->email->subject('Activation link');
$this->email->message('Welcome .<br/>');
$this->load->view('registration_success');
$this->email->send();
no errors are displayed, but the mail is not sent.