RE: [PHP-DB] Mail problem

2002-08-01 Thread Russ
Could you not simply extract all the email addresses from the DB as you would any other data, then loop thru the result set calling PHP's mail() function for every record retrieved? while($row=mysql_fetch_assoc($result)) { extract($row); //Presume's '$email ' is the name of the field in which

Re: [PHP-DB] Mail problem

2002-08-01 Thread Bartek Pawlik
:38 AM Subject: RE: [PHP-DB] Mail problem Could you not simply extract all the email addresses from the DB as you would any other data, then loop thru the result set calling PHP's mail() function for every record retrieved? while($row=mysql_fetch_assoc($result)) { extract($row); //Presume's

RE: [PHP-DB] Mail problem

2002-08-01 Thread Russ
Pawlik [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 01, 2002 2:47 PM To: [EMAIL PROTECTED]; Russ Subject: Re: [PHP-DB] Mail problem Of course, but PHP is on Linux machine where I don't have sendmail, because my mail server is on different machine, and that's my problem Bartek

Re: [PHP-DB] Mail problem

2002-08-01 Thread Manuel Lemos
Hello, On 12/31/1969 09:00 PM, Unknown Sender wrote: Of course, but PHP is on Linux machine where I don't have sendmail, because my mail server is on different machine, and that's my problem If you are allowed, you can install sendmail in your machine and configure to route all mail