your $recipients only containt the string "mailinglist.inc", it does not
contain the e-mail addresses, so the bcc is sent to the mailinglist.inc,
which is a non-existent address.
Basically, your header should looks like:
From:[EMAIL PROTECTED]\nBcc:[EMAIL PROTECTED],[EMAIL PROTECTED]\n
etc.
echo your header in <PRE> to see it if you miss any new line, etc.
Reuben D. Budiardja
On Wednesday 11 July 2001 12:15 pm, Marcus James Christian wrote:
> Hello,
>
> Ok I've got a script going to a Bcc but can't seem to get it to work
> when it's like this?
>
> <?php
> include("mailinglist.inc");
> $recipients = "mailinglist.inc";
> $headers = "From: Me <[EMAIL PROTECTED]>\nBCC:$recipients";
>
> include("password.inc");
> if($mailusername == $username && $mailpassword == $password);
> {
> mail($to, $subject, $bodytext, $headers);
> };
>
> ?>
>
>
> So how do I get mail to Bcc a variable like $recipients? Recipients
> being a huge text file of hundreds of email addy's.
>
> -Marcus
>
> --
> Marcus James Christian - UNLIMITED -
> Multimedia Internet Design
> http://mjchristianunlimited.com
>
> Proudly presents the music of CHROMATICUS
> at http://chromaticus.com
> and http://artists.mp3s.com/artists/275/chromaticus.html
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]