[PHP-DB] mail problem

2003-04-04 Thread Ahmed
hi i made a simple script to send e-mail to my mailing list it reads the e-mails from a text file and send it to them the problem that i want to send them once, not one by one which takes a lot of time cause i have a limited quota per day here is the script ?php $subject=subject;

RE: [PHP-DB] Mail problem

2002-08-01 Thread Russ
email addresses are stored in your DB: @mail($email,$from,$subject,$body); } or am I missing something?? Russ -Original Message- From: Bartek Pawlik [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 01, 2002 2:30 PM To: [EMAIL PROTECTED] Subject: [PHP-DB] Mail problem Sorry to be a little

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

[PHP-DB] mail problem with ... Unbalanced ''

2001-08-05 Thread Tom Hodder
Hi, sorry if this is slightly off topic but I thought someone might have some idea of the problem. I am using the mail function like so; mail( $to, $subject, $this-mime ); where the arguments have the following values; print '$to = '.$to.\n; print '$subject =