我有一个PHP脚本,应该发送邮件给多个收件人。我想把所有收件人都写到BCC。电子邮件地址是从mysql数据库中检索的。不幸的是,它不会发送任何邮件。
这是脚本:
<?php
include("/path/to/config.php");
$db = @new mysqli($mysql_host, $mysql_user, $mysql_pass, $mysql_db);
if (mysqli_connect_errno()) {
die ('Konnte keine Verbindung zur Datenbank aufbauen: '.mysqli_connect_error().'('.mysqli_connect_errno().')');
}
$sql = "select email from newsletter";
$recipients = array();
$result = $db->query($sql);
if (!$result) {
printf("Query failed: %s\n", $mysqli->error);
exit;
}
while($row = $result->fetch_row()) {
$recipients[]=$row;
}
print_r($recipients);
$result->close();
$db->close();
$to = 'myemail';
$subject = $_POST["subject"];
$body = $_POST["message"];
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$headers .= 'Reply-To: support@mymail.de' . "\r\n";
$headers .= 'BCC: ' . implode(', ', $recipients) . "\r\n";
mail($to, $subject, $body, $headers);
?>
print_r返回有效的回复:
Array ( [0] => Array ( [0] => first@mail.com ) [1] => Array ( [0] => second@mail.com ) )
答案 0 :(得分:5)
您正在制作阵列数组:
while($row = $result->fetch_row()) {
^^^^---array
$recipients[]=$row;
^^^^---add array to another array
}
你可能想要像
这样的东西while($row = ...) {
$recipients[] = $row[0];
}
所以你要添加JUST电子邮件地址。
由于您正在对阵列数组进行内爆,并将生成的字符串填充到另一个字符串中,因此您将真正获得BCC: Array, Array, Array, ....