乾草 我用這個代碼由英國廣播公司發送郵件不能正常工作
$to = "[email protected],[email protected]";
$subject = "Mini-mass Emailer";
$message = "<a href='#'>Hello World</a>";
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$headers .= 'From: Your Name <[email protected]>' . "\r\n";
$headers .= 'Bcc: {$to}' . "\r\n";
if(mail($to, $subject, $message, $headers)){
echo 'ok';
}
但看到什麼是happend 每個用戶看到用戶的完整列表
alt text http://img694.imageshack.us/img694/1289/21811933.gif
但我認爲會導致服務器負荷增加 – 2009-12-23 08:55:11
是的,它會這樣做,但我認爲它不應該是一個問題。如果你必須發送給大量的收件人,每次分解它們並運行子集可能是明智的。如果數量相對較少,額外的負擔將不值得擔心。 – 2009-12-23 08:59:48
這個號碼是200郵箱 – 2009-12-23 09:03:38