下面的代码,邮件发送不出去,求高手指点一下,哪里出了问题
<?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 = "[email protected]";
$mail->Password = "614520888";$mail->Subject = "Title of the mail".date('Y-m-d H:s:i');
$mail->Body = "Content of the mail";$mail->AddAddress("[email protected]");
var_dump($mail->Send());
?>