我正在尝试使用 phpmailer 发送确认电子邮件,但遇到了问题。邮件的内容位于名为 page_mail.php 的页面中,我正在使用 php mailer 发送此内容,但是当我收到电子邮件时,它返回“1”。
你们中的一个可以帮助我吗?
这是我的代码
$req = mysql_query("SELECT * FROM users WHERE email='test@test.com'") or die(mysql_error());
$info = mysql_fetch_array($req);
$body = include('page_mail.php');
echo $body;
$mail = new PHPMailer();
$mail->IsSendmail();
$mail->AddAddress("test@test.com");
$mail->Subject = "MAIL TEST";
$mail->MsgHTML($body);
$mail->AltBody = "Ce message est au format HTML, votre messagerie n'accepte pas ce format.";
$mail->Send();
ini_get('sendmail_path');