PHPMailer

Q:

SMTP Error: Could not connect to SMTP host

A:

In my case it was a lack of SSL support in PHP which gave this error.

So I enabled extension=php_openssl.dll

$mail->SMTPDebug = 1; also hinted towards this solution.