我正在尝试使用PHPMailer和我的SMTP服务器向1500名用户发送NewsLetter。
我尝试将邮件发送到2封BCC电子邮件进行测试,并成功发送邮件。 但在我继续将邮件发送到1500个电子邮件地址之前,我几乎没有问题。
我正在使用此代码段。
<?php
require "../PHPMailer-master/PHPMailerAutoload.php";
$bcc_list = array('emailaddrs1,emailaddress2');
$mail = new PHPMailer();
$body = file_get_contents('contents.html');
$body = eregi_replace("[\]",'',$body);
$mail->IsSMTP(); // telling the class to use SMTP
$mail->Host = "smtp.myserver.com"; // SMTP server
$mail->SMTPDebug = 2; // enables SMTP debug information (for testing)
// 1 = errors and messages
// 2 = messages only
$mail->SMTPAuth = true; // enable SMTP authentication
$mail->Host = "smtp.myserver.com"; // sets the SMTP server
$mail->Port = 25; // set the SMTP port for the GMAIL server
$mail->Username = "mailer@myserver.com"; // SMTP account username
$mail->Password = "mypasss"; // SMTP account password
$mail->SetFrom('mailer@myserver.com', 'myserver Support');
$mail->AddReplyTo("mailer@myserver.com","myserver Support");
$mail->Subject = "Email sent from xampp";
$mail->AltBody = "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test
$mail->MsgHTML($body);
$address = "support@myserver.com";
$mail->AddAddress($address, "support@myserver.com");
foreach($bcc_list as $bcc_email){
$mail->AddBCC($bcc_email);
}
if(!$mail->Send()) {
echo "Mailer Error: " . $mail->ErrorInfo;
//insert that emaill address into database for re-emailing.
} else {
echo "Message sent!";
}
1)我如何制作,电子邮件在<To>
字段中显示用户的电子邮件地址而不是我的虚拟地址?
2)它是以1封电子邮件还是1500封电子邮件发送的? 即,我如何能够捕获哪些电子邮件已成功发送以及哪些电子邮件未成功发送(由于某些超时或出现问题),因此我可以再次发送这些电子邮件,而不必将所有其他电子邮件发送给其他人?
答案 0 :(得分:1)
在您的代码中,您向一个地址发送一条消息,并向所有其他地址发送BCC,因此只有一个To
地址 - 这就是BCC的工作原理。如果您希望将每个收件人的地址显示为To
地址,则必须单独发送每封邮件 - 请查看the mailing list example provided。如果您想在很长的任何类型的收件人列表中发现失败,请确保您使用的up-to-date version of PHPMailer过去是错误的。任何错误的地址都会在$mail->ErrorInfo
报告。