Re: [PHP] Re: using mail() for multiple email address...

2004-03-09 Thread Adam Reiswig
yes, my webhost is on Unix. Thanks, that must be it because I sent a regular email to both address's at the same time and I only received one. -Adam Reiswig [EMAIL PROTECTED] wrote: On 8 Mar 2004 Adam Reiswig wrote: Normally, the two emails would end up in the same pop account but don't seem

[PHP] Re: using mail() for multiple email address...

2004-03-08 Thread trlists
On 8 Mar 2004 Adam Reiswig wrote: > Normally, the two emails would end up in the same pop account but don't > seem to be when I use the above script. If I send to one or the other > they receive appropriately, but if I send to both at the same time, I > only receive one email, not both. If anyon

[PHP] Re: using mail() - what is max number of email addresses I can specify in To field?

2003-10-22 Thread Manuel Lemos
Hello, On 10/23/2003 01:35 AM, John Christopher wrote: I am writing a script that will query a database table for some statistical information, and then email it (daily, weekly, and monthly) to a list of subscribers. I don't know ahead of time how many persons will be subscribed to receive the in

[PHP] Re: using mail()

2003-08-01 Thread Kevin Stone
"Amanda McComb" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > If I am using this code: > > mail("[EMAIL PROTECTED]", "test", "testbody"); > > and want to add a From: line, how do I do it? > > Also, is this an excepted way of sending mail from a web page? > > Thanks, > Amanda The m

[PHP] Re: Using mail() for mailist list app

2003-01-02 Thread Manuel Lemos
Hello, On 01/01/2003 08:46 PM, Monty wrote: Is the PHP mail() command robust enough to use in a little mailing list app? Sure, it just calls sendmail, so it is just as robust as sendmail as long as you configure it properly. The app will basically send an HTML or Text e-mail to the member da

[PHP] Re: Using mail() for mailist list app

2003-01-01 Thread Mike Mannakee
I've got a newsletter that's now reached 5000 and continues to grow. I use PHP's mail() function, personalized with unsubscribe info and first names and it works just fine. I just set the timeout to 5 minutes, but it's never yet even taken 1 minute to complete. Works fine. Mike "Monty" <[EMAI