PHP邮件发送给多个收件人

aro*_*rok 4 php email

我有一些PHP代码,我用它来发送电子邮件到特定的电子邮件地址.但是,我想在PHP发送它时在PHP中包含更多的电子邮件地址.当我试着显示以下内容时

错误:邮件程序错误:您必须至少提供一个收件人电子邮件地址.

include "class.phpmailer.php"; // include the class file name
$mail = new PHPMailer(); // create a new object
$mail->IsSMTP(); // enable SMTP
$mail->SMTPDebug = 1; // debugging: 1 = errors and messages, 2 = messages only
$mail->SMTPAuth = true; // authentication enabled
//$mail->SMTPSecure = 'ssl'; // secure transfer enabled REQUIRED for GMail
$mail->Host = "mail.authsmtp.com";
$mail->Port = "25"; // or 587
$mail->IsHTML(true);
$mail->Username = "xxxxx";
$mail->Password = "xxxxx";
$mail->SetFrom("cpn@xxxxxxx.com");
$mail->Subject = $sub1;
$mail->Body = $text_mail;
$mail->AddAddress("xxxxxxx@gmail.com;aral@xxxxxx.com;akhader@xxxxxx.com");
 if(!$mail->Send()){
 echo "Mailer Error: " . $mail->ErrorInfo;
}
else{
 echo "Message has been sent";
}
Run Code Online (Sandbox Code Playgroud)

任何人都指导我如何做到这一点

Jam*_*lor 7

改变这一行

$mail->AddAddress("xxxxxxx@gmail.com;aral@xxxxxx.com;akhader@xxxxxx.com");
Run Code Online (Sandbox Code Playgroud)

对此:

$mail->AddAddress("xxxxxxx@gmail.com");
$mail->AddAddress("aral@xxxxxx.com");
$mail->AddAddress("akhader@xxxxxx.com");
Run Code Online (Sandbox Code Playgroud)

您可以根据需要多次运行该功能,直到获得所需的所有地址为止.

有关详情,请参阅此处