Unable to send email through smtp in codeigniter

Unable to send email through smtp in codeigniter

Hi,
I am trying to send email through codeigniter using zoho smtp, but it is giving the following error "Unable to send email using PHP SMTP. Your server might not be configured to send mail using this method."

My server configurations are as follows:
 $config = Array (
                'useragent' => 'CodeIgniter',
                'protocol' => 'smtp',
                '_smtp_auth' =>TRUE,
                'smtp_host' => 'ssl://smtp.zoho.com',
                'smtp_port' => 587,
                'smtp_user' => '**@domain.in',
                'smtp_pass' => '****',
                'charset' => 'utf-8',
                'mailtype' => 'html',
                'newline' => "\r\n",
                'wordwrap' => TRUE,
                'wrapchars'=>76,
                'validate' => FALSE,
                'priority' => 3,
                'crlf' => '\r\n',
                'newline' => '\r\n',
                'bcc_batch_mode' => TRUE,
                'bcc_batch_size' => '200'
                );


Can please someone guide me to correct path.