Saludos
Código:
$xmail = new PHPMailer();
$xmail->IsSMTP();
$xmail->SMTPAuth = $config["auth"];
$xmail->SMTPSecure = "ssl";
$xmail->Host = $config["host"];
$xmail->Port = $config["port"];
$xmail->Username = $config["username"];
$xmail->Password = $config["password"];
$xmail->AddAddress($to);
$xmail->AddBCC($bcc);
$xmail->SetFrom($from);
$xmail->Subject = $subject;
$xmail->Body = $html;
$mail->AltBody = "Usted esta viendo este mensaje simple debido a que su servidor de correo no admite formato HTML.";
$xmail->IsHTML(true);