I don't think variable substitution works within quotes when not used with
echo...

Try (I think you also a space after BCC:)

> $headers = "From: Me <[EMAIL PROTECTED]>\nBCC: ".$recipients;

instead of

> $headers = "From: Me <[EMAIL PROTECTED]>\nBCC:$recipients";

and you should be fine....

Are $recipients ;-seperated properly?

--
Lasse


"Marcus James Christian" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> 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]

Reply via email to