I have a maillist script .. that get emails from Mysql Db and sends emails ..
I have over 8000 email addresses .. so I have a hard time sending emails .. I 've read somewhere in the fourms that I have to use Flush()
But frankly I'm not sure how to use it should I use it inside the loop
while ($row=mysql_fetch_array($res))
{
// send email..
// should flush be here and how..???
}
thanks in advance..