> > Also is there any examples of this kind of app?

Just do something like this with shell, logically

while read_line_from_email_address_list ; do
        cat your_text_file | mail -s "Your Subject" address_from_list;
        sleep 1;
done;

and put it in the background.  You only need the sleep for
"safety" as some sendmail(1)'s/systems don't take kindly
to queueing up 20,000 messages....

_jef
-- 
Justin Farnsworth
Eye Integrated Communications
321 South Evans - Suite 203
Greenville, NC 27858 | Tel: (252) 353-0722

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to