![]() 10
Oct 11 phplist v2.10.10 among other systems we're using PHP List to process our customers' direct mailings. every now and then customers ask for a list of recipients that a certain EDM could not be delivered to. phplist allows you to delete recipients with malformed email adresses or gives you a (very ugly) list of undelivered mails for your recipients. you could probably train a monkey to do this or you could ask your local database hacker to write a query like the following for this task: select email, tattr.value in order to save the results to a csv file (which can easily be converted to a xls file) you'd add some more code to the query select email, tattr.value into outfile '/tmp/your_lovely_list_of_bounces.csv' make sure you're selecting a directory with write access for the user your database is running on (eg. mysql:mysql). using /tmp/ is probably a good idea. good night |





![[PHPLIST] export a list of bounced mails to a CSV file](http://lo-fi.at/sites/default/files/imagecache/blog_detail/server_1.png)
