0
所有自定義頁眉(如發件人,抄送,密送和日期)從PHP mail() reference支持
,但實際上,我怎麼在我的代碼實現這一點?即我不希望任何收件人看到其他電子郵件......永遠。
喜歡的東西:
<?php
$to = "[email protected], [email protected], [email protected]";
$subject = "test message";
$msg = "this is a test";
$headers = "Bcc"; // <-- this?
if (mail($to, $subject, $msg, $headers))
echo "message sent";
else
echo "uh oh";
?>
不要忘了你的手指,並希望在MTA剝離從消息中BCC頭。 – 2012-08-15 02:52:13
感謝您的循環概念。這很簡單。 @Ignacio - 是的.. – khaverim 2012-08-15 03:16:15