currently i have a script that emails a set of email address stored in a text file, i.e.
[email protected], [email protected], [email protected]
how do i make this send the emails to them without them seeing who else is there, currently this is the email
[php]mail( $email, “Thought Of The Day”,
$message, “From: [email protected]” );[/php]
(and the variable $email has all the email address stored in the same way as above
Thanks