I found a weird problem. My mail() function only sends to the last email address of my bcc list.
The code is like this:
/ To send HTML mail, you can set the Content-type header. /
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
$headers .= "From: fromuser@yahoo.com\r\n";
$headers .= "Bcc: receiver1@lycos.com,receiver2@yahoo.com,receiver3@hotmail.com";
$content="<p>Test this!</p>";
mail("anybody@lycos.com", "Title here...", $content, $headers);
--- Finally, only anybody@lycos.com and receiver3@hotmail.com can get emails!!!