I would be glad if I had access to a maling list manager.
But there is none installed on the Cobalt Cube 3 and I don´t have root access.
So I have to manage it via php.
Thought to use sth like this :
<?for ($i=0;$i<100;$i++) {
$email_to="int***@web.de";
$email_betreff="Testmail";
$kommentar="Comment";
$header="From:Marco<Marco@Beicht.de>\n";
for ($j=0;$j<4;$j++) {
$header .= "Bcc: $email_to\n";
}
mail($email_to,$email_betreff,$kommentar,$header);
echo "send $i <br>";
flush();
}?>
with real data but Bcc doesn´t work.
Any idea ?