Hi,
does somebody knows a good php-mailer? To mail to all my members.
I allready have a db with members, so the script has to be easy to make it work with my db.
greets,
tom
php mailer
Moderator: General Moderators
-
kettle_drum
- DevNet Resident
- Posts: 1150
- Joined: Sun Jul 20, 2003 9:25 pm
- Location: West Yorkshire, England
You can make your own.
Etc.
Code: Select all
$count = mysql_query("SELECT count(*) FROM members");
$count = mysql_fetch_assoc($count);
for($x = 0; $x < $count['count(*)']; $x++){
$result = mysql_query("SELECT * FROM members LIMIT 5, $start");
while($row = mysql_fetch_assoc($result)){
mail();
//pause for a second or two so you dont use a continous stream of bandwidth and server resources
}
}