Anyone know where i can find a mass mailing script in php which sends out mail to emails in a database? I want to work on a site and can custom code the rest, just dont know how to do the mail sending part.
The views expressed on this page by users and staff are their own, not those of NamePros.
look on somewhere like http://www.phpclasses.org you should find a class that fits your needs easy enough (just noticed Danltn posted practically the same).
Depending on how many emails you anticipate will be getting sent at 1 go it may be best for you to look at classes that connect to the SMTP server rather than using the mail function. When you use the SMTP protocol it should only need connect once to send all the emails.