在phpmailer中找不到类SMTP

发布时间:2022-04-30 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了在phpmailer中找不到类SMTP脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。
我的 PHP邮件程序@L_360_2@有这个问题.我尝试更改所需的文件,但仍然是相同的.任何人都可以帮我解决这个错误.

这是我的PHPmailer代码

$mail = new PHPMailer();
$mail->Issmtp();
$mail->SMTPDebug = 0;
$mail->SMTPAuth = true;
$mail->SMTPSecure = 'ssl'; 
$mail->Host = "smtp.gmail.com";
$mail->Port = 587;
$mail->IsHTML(true);
$mail->Username = "testnoreply@gmail.COM";
$mail->Password = "test";
$mail->SetFrom("testnoreply@gmail.com");
$mail->Subject = "Membership expire notice";
$mail->Body = "Dear ICONIS member your membership is going to expire please renew IT";
$mail->AddAddress($em);

if (!$mail->Send()) {
  echo "Mailer Error: " .$mail->ErrorInfo;
} else {
  echo "Mail has been sent";
}

解决方法

你确定你的文件夹中有class.PHPmailer.PHP和class.smtp.PHP吗?

在包含class.PHPmailer.PHP之前尝试包括class.smtp.PHP,如下所示:

<?PHP
include 'class.smtp.PHP';
include 'class.PHPmailer.PHP';
// your code goes here

然后告诉你是否错误.

脚本宝典总结

以上是脚本宝典为你收集整理的在phpmailer中找不到类SMTP全部内容,希望文章能够帮你解决在phpmailer中找不到类SMTP所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。