dqp4933 2016-10-10 12:23
浏览 120
已采纳

PHPMailer:您必须至少提供一个收件人电子邮件地址

I'm using PHPMailer on my website, but it returns an error:

You must provide at least one recipient email address.

The server is running PHP 7. I've checked out the following pages looking for answers:

None of those solved my problem.

This is the way it's set up:

require_once 'lib/phpmailer/PHPMailerAutoload.php';

$m = new PHPMailer;

$m->isSMTP();
$m->SMTPAuth = true;
$m->SMTPDebug = 2;

$m->Host = 'smtp.zoho.com';
$m->Username = 'email@email.com';
$m->Password = 'password';
$m->SMTPSecure = 'ssl';
$m->Port = 465;

$m->From = 'email@email.com';
$m->FromName = 'Name';

$m->Subject = 'Testing PHPMailer';
$m->Body = 'Body of the email. Testing PHPMailer.';

if (!$m->send()) {
    echo 'Mailer Error: ' . $m->ErrorInfo;
} else {
    echo 'Everything OK.';
}

Doing var_dump(PHPMailer::validateAddress('email@email.com')); returns true. So the email address doesn't seem to be the issue.

EDIT

Adding $m->AddAddress = email@email.com doesn't solve the issue. It returns the exact same error.

EDIT 2

Have added $m->addAddress('email@email.com') to the code. I had been doing that wrong. It now returns a 500 error.

EDIT 3

Turns out I mistyped the addAddress in my code (I misplaced a quote, which caused the 500 error). The provided answer stands. I did not properly add a recipient.

My apologies for troubling you with this. I should've more carefully looked at the PHPMailer example provided, instead of blindly following a third part tutorial.

  • 写回答

1条回答 默认 最新

  • douzhanglu4591 2016-10-10 12:24
    关注

    You haven't added a recipient address. You need to do this:

    $m->addAddress('email@email.com');
    

    Take a look at PHPMailer's example:

    https://github.com/PHPMailer/PHPMailer#a-simple-example

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度