Re: [PHP] bcc on php

2003-07-17 Thread Wendell Brown
On Fri, 18 Jul 2003 08:30:24 +0800, Louie Miranda wrote: >> A message that you sent contained a recipient address that was incorrectly >> constructed: >> Bcc: [EMAIL PROTECTED] missing or malformed local part (expected word or >> "<") > >got this error.. Well, maybe your copy of php is expectin

Re: [PHP] bcc on php

2003-07-17 Thread Louie Miranda
--- From: "Wendell Brown" <[EMAIL PROTECTED]> To: "php" <[EMAIL PROTECTED]> Sent: Thursday, July 17, 2003 7:31 PM Subject: Re: [PHP] bcc on php > On Thu, 17 Jul 2003 05:55:27 +, Curt Zirzow wrote: > > >> Example 4. Sending complex email > >

Re: [PHP] bcc on php

2003-07-17 Thread David Nicholson
Hello, This is a reply to an e-mail that you wrote on Thu, 17 Jul 2003 at 13:09, lines prefixed by '>' were originally written by you. > be aware that BCC header some times don't works properly on Windows > platforms and the recipient can see the BCC header from the source of > mail! I am using

Re: [PHP] bcc on php

2003-07-17 Thread Abdolhamid Joukar
;'Louie Miranda'" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> > Sent: Thursday, July 17, 2003 5:27 AM > Subject: RE: [PHP] bcc on php > > > > Just include Bcc in the extra headers. Take a look at > > > > Example 4. Sending complex email > &

Re: [PHP] bcc on php

2003-07-17 Thread Wendell Brown
On Thu, 17 Jul 2003 05:55:27 +, Curt Zirzow wrote: >> Example 4. Sending complex email >> http://www.php.net/manual/en/function.mail.php >> >um.. don't use that example, it is the incorrect way to send a bcc. for >one it wont work and two the people will see the bcc, defeating the >purpose of

Re: [PHP] bcc on php

2003-07-16 Thread Curt Zirzow
Louie Miranda <[EMAIL PROTECTED]> wrote: > hello, > > how do you make a bcc on php on a form 2 email settings.. I would suggest: http://phpmailer.sourceforge.net/ Curt -- -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] bcc on php

2003-07-16 Thread Curt Zirzow
Ralph Guzman <[EMAIL PROTECTED]> wrote: > Just include Bcc in the extra headers. Take a look at > > Example 4. Sending complex email > http://www.php.net/manual/en/function.mail.php > um.. don't use that example, it is the incorrect way to send a bcc. for one it wont work and two the people will

RE: [PHP] bcc on php

2003-07-16 Thread Ralph Guzman
Just include Bcc in the extra headers. Take a look at Example 4. Sending complex email http://www.php.net/manual/en/function.mail.php -Original Message- From: Louie Miranda [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 16, 2003 5:47 PM To: [EMAIL PROTECTED] Subject: [PHP] bcc on php

[PHP] bcc on php

2003-07-16 Thread Louie Miranda
hello, how do you make a bcc on php on a form 2 email settings.. -- Thank you, Louie Miranda ([EMAIL PROTECTED]) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Bcc with mail....

2003-01-01 Thread Michael J. Pawlowsky
Well something weird is going on here. Both my dev and prod machines are PHP 4.2.2 They might have some differences since they are not distributed from the same people. One RH8 the other is a network applicace called an InstaRak. At home on RH8 everything was fine... on the appliance I needed to

Re: [PHP] Bcc with mail....

2003-01-01 Thread Jason Wong
On Thursday 02 January 2003 03:01, Michael J. Pawlowsky wrote: > Has anyone successfully used BCC with mail... (on Linux with sendmail) > > If so are you using the header: > > "Bcc: My Name <[EMAIL PROTECTED]>\r\n" For Bcc it would be pointless to include "My Name" as Bcc recipients are not displ

[PHP] Bcc with mail....

2003-01-01 Thread Michael J. Pawlowsky
Has anyone successfully used BCC with mail... (on Linux with sendmail) If so are you using the header: "Bcc: My Name <[EMAIL PROTECTED]>\r\n" Thanks, Mike -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Bcc with the mail command

2002-07-31 Thread Carlos Fernando Scheidecker Antunes
Hello all, Just a question about PHP mail comand. Usually I have something like this: if (mail($to,$Subject,$Body,$MailHeaders)) { return 1; } else { return 0; } Is there any way to use a BCC instead of to? I would like that the message sent did not have the address of the person it i

Re: [PHP] bcc

2002-01-06 Thread Mehmet Kamil ERISEN
Dear List, I is always a good idea to check out the manual before asking questions. The answer to Leon's question about files is in the manual as well as the answer to this questions. I hope the following links help. File Operations: http://www.php.net/manual/en/ref.filesystem.php Bcc can be f

[Fwd: Re: [PHP] bcc]

2002-01-06 Thread Bogdan Stancescu
Inadvertedly only sent to me... Original Message Subject: Re: [PHP] bcc Date: Mon, 7 Jan 2002 11:46:07 +0800 From: Jimmy <[EMAIL PROTECTED]> To: Bogdan Stancescu <[EMAIL PROTECTED]> References: <[EMAIL PROTECTED]><00b701c1972b$68cae5c0$[EMAIL PROTECTE

Re: [PHP] bcc

2002-01-06 Thread Bogdan Stancescu
What do you mean? Supported in what way? (I take it you're referring to the e-mail blind carbon copy feature). Bogdan "Deependra B. Tandukar" wrote: > Greetings ! > > Is Bcc supported in PHP? > > Looking forward to hearing from you. -- PHP General Mailing List (http://www.php.net/) To unsubsc

[PHP] bcc

2002-01-06 Thread Deependra B. Tandukar
Greetings ! Is Bcc supported in PHP? Looking forward to hearing from you. Warm Regards, DT -- 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 PROTECT

Re: [PHP] bcc

2001-11-03 Thread Steve Werby
"Nikola Karović" <[EMAIL PROTECTED]> wrote: > how can i send bcc from my php @mail script. mail( $to, $subject, $message_body, "From: $from_name <$from_address>\nbcc:[EMAIL PROTECTED]" ); -- Steve Werby President, Befriend Internet Services LLC http://www.befriend.com/ -- PHP General Mailing

[PHP] bcc

2001-11-03 Thread Nikola Karović
hello, how can i send bcc from my php @mail script. regards -- 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]

Re: [PHP] bcc, cc limit on recepients?

2001-04-07 Thread B. van Ouwerkerk
>Is there any limit on the number of recepients that a >bcc or a cc field email can be sent to? > >I have a loop which extracts arounf 400 emails from >the database and then sends it as email to all the 400 >recepients but the script fails and I get a mysql >error. > >SO is there any limit on the

Re: [PHP] bcc, cc limit on recepients?

2001-04-07 Thread Dean Hall
"Dhaval Desai" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hi! > > > Is there any limit on the number of recepients that a > bcc or a cc field email can be sent to? > > I have a loop which extracts arounf 400 emails from > the database and then sends it as e

[PHP] bcc, cc limit on recepients?

2001-04-07 Thread Dhaval Desai
Hi! Is there any limit on the number of recepients that a bcc or a cc field email can be sent to? I have a loop which extracts arounf 400 emails from the database and then sends it as email to all the 400 recepients but the script fails and I get a mysql error. SO is there any limit on the num

Re: [PHP] Bcc email does not work

2001-02-03 Thread Richard Lynch
> Have u ever tried to send many emails using Bcc? > It does not work for me ! Yeah, somewhere around 50 addresses you are choking sendmail. You'll need something designed for a little more heavy-duty work than the mail() function. See Manuel Lemos' mail class, or consider integration with a ma

[PHP] Bcc email does not work

2001-01-31 Thread kaab kaoutar
Hi! Have u ever tried to send many emails using Bcc? It does not work for me ! Thanks _ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. Return-Path: <[EMAIL PROTECTED]> Received: (qmail 19528 i