We have a big list of email addresses in our database from where people have signed up for newsletters for one of our websites.
We have a cron job that uses PHP to grab email address from the database and sends out the newsletters.
When an email gets bounced back, the cron job admin gets an email about it.
If we wanted a script to automatically remove bounced email address from the database, what is the best way to accomplish it? Is there someway to log bounced emails and then have a script parse the log and then remove the bad email addresses? Or is there a way to test for bounced email addresses via PHP?