RE: [PHP] bulk e-mails

2001-10-03 Thread Maxim Maletsky \(PHPBeginner.com\)
You've already had a nice answer. Look for ezmlm. It is a very powerful open source mailing manager. You could store the data in mySQL database and administer it in your favorite way via PHP or whatever. Then, loop your PHP code and (if you need this of course) copy all the emails of users you ne

Re: [PHP] bulk e-mails

2001-10-02 Thread Mukul Sabharwal
Hi, Well to reach the customers, each and every, you would have to send it to each and everybody, very simple. Ofcourse, it's not the most nice job the server can do, but your emails say 20K each, and 10,000 users, isn't a very rough job. You could essentially loop through the user record and s

RE: [PHP] bulk e-mails

2001-10-02 Thread Jack Dempsey
check out the archives and google--there's lots of info on things like qmail,ezmlm, and the topic of bulk emails jack -Original Message- From: Tyler Longren [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 02, 2001 11:05 PM To: PHP-General Subject: [PHP] bulk e-mails Hello everyone,

RE: [PHP] bulk e-mails

2001-10-02 Thread Dave Watkinson
I use a database (MySQL). I retrieve the list of people to send to and then send one email at a time while looping through the results. Usually it's a couple of hundred at a time, not sure how many you mean by "many many"!!! Hope this helped! Dave -Original Message- From: Tyler Longren