Re: [PHP-DEV] Bug #14329 Updated: Mail() does not work

2001-12-04 Thread Hartmut Holzgraefe
Daniel Lorch wrote: ok, ok it's mentioned in the manual, but why doesn't PHP just parse out all mail addresses? the unix implementation doesn't parse the parameters at all, it just passes them transparently to the local MTA .. which makes the behaviour of mail() unpredictable. no, it's

Re: [PHP-DEV] Bug #14329 Updated: Mail() does not work

2001-12-03 Thread Daniel Lorch
hi, 3) your script would most likely fail even if the mail server talked to you $to = $name1 $mail1; is wrong, you have to quote the real name: $to = \$name1\ $mail1; This is not true. PHP parses out all mail adresses which then are put into the mail ENVELOPE. everything

Re: [PHP-DEV] Bug #14329 Updated: Mail() does not work

2001-12-03 Thread Hartmut Holzgraefe
Daniel Lorch wrote: This is not true. PHP parses out all mail adresses which then are put into the mail ENVELOPE. everything else doesn't influence the behaviour of who actually receives the mail (i.e. everything else goes into the mail BODY and all data there is just voluntary, if you want