Re: [PHP] mail() Bcc:

2003-03-25 Thread David T-G
John, et al -- One more nit to add to this... ...and then CPT John W. Holmes said... % ... % % You can do it like this: % % $headers = From: [EMAIL PROTECTED]: [EMAIL PROTECTED]: % [EMAIL PROTECTED]; Yes, figuring that the added line break is just because of a dumb mail program :-0 % % or

Re: [PHP] mail() Bcc:

2003-03-24 Thread Bryan Brannigan
$mail-BCC( [EMAIL PROTECTED] ); - Original Message - From: Oden Odenius [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, March 24, 2003 3:44 PM Subject: [PHP] mail() Bcc: How can send bcc: with mail()? -- Programmers are tools for convert coffeine into code... (c) Oden

Re: [PHP] mail() Bcc:

2003-03-24 Thread Kevin Stone
- Original Message - From: Oden Odenius [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, March 24, 2003 1:44 PM Subject: [PHP] mail() Bcc: How can send bcc: with mail()? -- Programmers are tools for convert coffeine into code... (c) Oden From, CC and BCC are headers to be

Re: [PHP] mail() Bcc:

2003-03-24 Thread Leif K-Brooks
Not everyone has whatever class you seem to be using... Bryan Brannigan wrote: $mail-BCC( [EMAIL PROTECTED] ); - Original Message - From: Oden Odenius [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, March 24, 2003 3:44 PM Subject: [PHP] mail() Bcc: How can send bcc: with mail()?

Re: [PHP] mail() Bcc:

2003-03-24 Thread CPT John W. Holmes
: Monday, March 24, 2003 3:56 PM Subject: Re: [PHP] mail() Bcc: $mail-BCC( [EMAIL PROTECTED] ); Honestly, how do you expect that to help anyone? Do you assume the entire world is using whatever class you are using? They are not. At least tell them what class you're using as a recommendation, otherwise

Re: [PHP] mail() Bcc:

2003-03-24 Thread CPT John W. Holmes
How can send bcc: with mail()? From, CC and BCC are headers to be set in the fourth parameter of the mail() function. Headers must be spearated by end-of-line characters. $headers = From: [EMAIL PROTECTED] CC: [EMAIL PROTECTED] BCC: [EMAIL PROTECTED]; mail($to, $subject, $body,

Re: [PHP] mail() Bcc:

2003-03-24 Thread Kevin Stone
- Original Message - From: CPT John W. Holmes [EMAIL PROTECTED] To: Kevin Stone [EMAIL PROTECTED]; Oden Odenius [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Monday, March 24, 2003 3:51 PM Subject: Re: [PHP] mail() Bcc: How can send bcc: with mail()? From, CC and BCC are headers

Re: [PHP] mail() Bcc:

2003-03-24 Thread Kevin Stone
- Original Message - From: Kevin Stone [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, March 24, 2003 4:17 PM Subject: Re: [PHP] mail() Bcc: - Original Message - From: CPT John W. Holmes [EMAIL PROTECTED] To: Kevin Stone [EMAIL PROTECTED]; Oden Odenius [EMAIL

Re: [PHP] mail() Bcc:

2003-03-24 Thread Ernest E Vogelsinger
At 23:51 24.03.2003, CPT John W. Holmes said: [snip] If I'm wrong, someone please let me know, but some servers may only accept Bcc: instead of bcc: or BCC:, etc... ?? Does anyone know if that matters? If it does, is it only dependant upon the sending SMTP

RE: [PHP] Mail (), BCC: recipients not receiving my Newsletter

2003-02-27 Thread Ricardo Fitzgerald
It's not working either ... Rick Off Price Closeouts 1700 W 8 Ave Miami, FL 33010 (305) 888 2555 FAX (305) 884 1761 -Mensaje original- De: Jason k Larson [mailto:[EMAIL PROTECTED] Enviado el: Wednesday, February 26, 2003 5:59 PM Para: Ricardo Fitzgerald CC: [EMAIL PROTECTED] Asunto:

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

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, 2001 10:15

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

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.

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! Missed that