спасибо ... я сделал это с тем же кодом ...
просто измените порт, затем он работает ....
вот код
function do_email ($ msg = NULL, $ sub = NULL, $ to = NULL, $ from = NULL) {
$ This-> load-> библиотека ( 'электронная почта');
$config = array();
$config['protocol']='smtp';
$config['smtp_host']='localhost';
$config['smtp_port']='587';
$config['charset']='utf-8';
$config['newline']="\r\n";
$config['wordwrap'] = TRUE;
$config['mailtype'] = 'html';
$this->email->initialize($config);
$this->email->from($from, $system_name);
$this->email->to($to);
$this->email->subject($sub);
$this->email->message($msg);
$email = $this->email->send();
}