codeigniter application with smtp
$config = array(
'smtp_host' =>'smtp.zeptomail.com',
'smtp_port' =>587,
'smtp_user' =>'user,
'smtp_pass' =>'password',
'protocol' => 'mail',
'mailtype' => 'html',
'charset' => 'iso-8859-1',
'wordwrap' => TRUE,
'_smtp_auth' => TRUE,
'smtp_crypto' => 'tls',
);
$this->load->library( 'email' ,$config);// , $config //for authenticate email
//$this->email->set_newline("\r\n");
$config['newline'] = "\r\n";
$config['crlf'] = "\r\n";
$config_arra = $this->get_site_config();
$from_email = $config_arra['from_email'];
We have done smtp configuration our codeigniter application, But it is not working please help me