【发布时间】:2014-02-06 15:34:15
【问题描述】:
我有一些 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";
}
谁指导我怎么做
【问题讨论】:
-
PHP mailer multiple address 的可能重复项