Re: [PHP] Mail Bcc to a $variable?

2001-07-11 Thread Lasse
"Reuben D Budiardja" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > 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. DOH! Mis

Re: [PHP] Mail Bcc to a $variable?

2001-07-11 Thread Reuben D Budiardja
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. ec

RE: [PHP] Mail Bcc to a $variable?

2001-07-11 Thread Matthew Loff
Ahh! I forgot to meantion the \n at the end of the headers in my original post... -Original Message- From: Marcus James Christian [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 11, 2001 1:37 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] Mail Bcc to a $variable? Like this

RE: [PHP] Mail Bcc to a $variable?

2001-07-11 Thread Chadwick, Russell
Subject: Re: [PHP] Mail Bcc to a $variable? Like this... $headers = "From: Me <[EMAIL PROTECTED]>\nBCC:$recipients\n"; Or somewhere else? Thanks, Marcus Russell Chadwick wrote: > Try a newline at the end of $headers > > -Original Message- > From: Marcus Jam

Re: [PHP] Mail Bcc to a $variable?

2001-07-11 Thread Marcus James Christian
Like this... $headers = "From: Me <[EMAIL PROTECTED]>\nBCC:$recipients\n"; Or somewhere else? Thanks, Marcus Russell Chadwick wrote: > Try a newline at the end of $headers > > -Original Message- > From: Marcus James Christian [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, July 11, 200

RE: [PHP] Mail Bcc to a $variable?

2001-07-11 Thread Chadwick, Russell
Try a newline at the end of $headers -Original Message- From: Marcus James Christian [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 11, 2001 10:15 AM To: [EMAIL PROTECTED] Subject: [PHP] Mail Bcc to a $variable? Hello, Ok I've got a script going to a Bcc but can't seem to get it to