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 求数学坐标画圆以及直线的算法
  • ¥100 c语言,请帮蒟蒻写一个题的范例作参考
  • ¥15 名为“Product”的列已属于此 DataTable
  • ¥15 安卓adb backup备份应用数据失败
  • ¥15 eclipse运行项目时遇到的问题
  • ¥15 关于#c##的问题:最近需要用CAT工具Trados进行一些开发
  • ¥15 南大pa1 小游戏没有界面,并且报了如下错误,尝试过换显卡驱动,但是好像不行
  • ¥15 自己瞎改改,结果现在又运行不了了
  • ¥15 链式存储应该如何解决
  • ¥15 没有证书,nginx怎么反向代理到只能接受https的公网网站