php邮件发送问题,求高手指点
下面的代码,邮件发送不出去,求高手指点一下,哪里出了问题
<?php
include("class.phpmailer.php");
$mail = new phpmailer();
$mail->IsSMTP();
$mail->SMTPAuth = true;
$mail->Host = "smtp.163.com";
$mail->Port = "25";
$mail->CharSet = "utf-8";
$mail->Username = "llf112756@163.com";
$mail->Password = "614520888";
$mail->Subject = "Title of the mail".date('Y-m-d H:s:i');
$mail->Body = "Content of the mail";
$mail->AddAddress("632771311@qq.com");
var_dump($mail->Send());
?>