私はそれを読んだ
すべてのカスタムヘッダー(From、Cc、Bcc、Dateなど)がサポートされています
PHP mail()リファレンスからですが、実際にこれをコードに実装するにはどうすればよいですか?つまり、受信者に他の電子メールを見せたくないのです...これまでに。
何かのようなもの:
<?php
$to = "someguy@somesite.com, another@abc.com, someother@def.com";
$subject = "test message";
$msg = "this is a test";
$headers = "Bcc"; // <-- this?
if (mail($to, $subject, $msg, $headers))
echo "message sent";
else
echo "uh oh";
?>