Nö, so geht das nich
PHP-Code:
bool mail ( string to, string subject, string message [, string additional_headers [, string additional_parameters]])
Als additional headers kannst du "Cc:", "Bcc:", "From:" und "Date:" angeben, also zb so in der art:
PHP-Code:
$to = "mail1@hotmail.com";
$betreff = "betreff";
$message = "message";
$bcc = "mail2@hotmail.com";
mail($to,$betreff,$message,"Bcc: $bcc");