Php mailer not working

Php mailer not working

Just have a problem configuring PHP mailer
Allways get a connection failure.
thw website i am trying to connect is www.annusmirabilis.me

here is the configuration:

$mail = new PHPMailer();

$mail->IsSMTP();

$mail->SMTPDebug  = 0;

$mail->Debugoutput = 'html';

$mail->Host       = "smtp.zoho.com";

$mail->Port       = 465;

$mail->SMTPAuth   = true;

$mail->SMTPSecure = 'ssl';                        

$mail->Username   = " administrar@annusmirabilis.me";

$mail->Password   = "password";

any suggestion?

thanx