Enable to Connect phpmailer

Enable to Connect phpmailer

Please help me out i'm enable to connect using phpmailer
following is my code and error


<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
    </head>
    <body>
        <?php
            require_once './PHPMailer/PHPMailerAutoload.php';
            $mail = new PHPMailer;
            $mail->SMTPDebug = 4;                         
            $mail->isSMTP();                                     
            $mail->Host = 'smtp.zoho.com'; 
            $mail->SMTPAuth = true;                   
            $mail->Username   = " mubashir@omni-academy.com"; 
            $mail->Password   = "*******";
            $mail->SMTPSecure = 'ssl';                          
            $mail->Port = 465;

            $mail->From = ' mubashir@omni-academy.com';
            $mail->FromName = 'Doe';
            $mail->addAddress(' mubashir.ibt@gmail.com');     // Add a recipient              // Name is optional
            $mail->isHTML(true);                                  // Set email format to HTML
            $mail->Subject = 'Here is the subject';
            $mail->Body    = 'This is the HTML message body <b>in bold!</b>';
            $mail->AltBody = 'This is the body in plain text for non-HTML mail clients';

            if(!$mail->send()) {
                echo 'Message could not be sent.';
                echo 'Mailer Error: ' . $mail->ErrorInfo;
            } else {
                echo 'Message has been sent';
            }
        ?>
    </body>
</html> 

ERROR

2017-11-21 06:49:05 Connection: opening to smtp.zoho.com:587, timeout=300, options=array ()
2017-11-21 06:49:06 Connection failed. Error #2: stream_socket_client(): unable to connect to smtp.zoho.com:587 (Connection refused) [/home/mytaleemadmin/public_html/email/PHPMailer/class.smtp.php line 298]
2017-11-21 06:49:06 SMTP ERROR: Failed to connect to server: Connection refused (111)
SMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting
Message could not be sent.Mailer Error: SMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting