i try to send email with codeigniter on localhost.
In order to that, in config directory i open a new php file called email
and write
<?php
$config = Array(
'protocol' => 'smtp',
'smtp_host' => 'ssl://smtp.googlemail.com',
'smtp_port' => 465,
'smtp_user' => 'mertmetinbjk@gmail.com',
'smtp_pass' => 'pass',
);
$this->load->library('email', $config);
?>
and in my controller write this
$this->load->library('email');
$this->email->from('bildirim@pasaj.com','Pasaj.com');
$this->email->to($email);
$this->email->subject('pasaj hesabinizi aktive etmek icin');
$this->email->message('Tıkla');
$this->email->send();
but i get these errors:

i made some research on the Internet, i read that i have to enable ssl from my php.ini file but there is no line like what can i do ?
TY
extension=php_openssl.dllin yourphp.ini. – stealthyninja Feb 27 '12 at 11:01.dllfile in yourpath/to/php/ext/folder? If it is, you should just be able to addextension=php_openssl.dllwhee your other extensions are listed in yourphp.iniand then restart Apache. – stealthyninja Feb 27 '12 at 11:24