I have a MySQL database on my web host holding a database of users. Within that database I store the email addresses of all customers. I have a customer list and a marketing list. I send out quarterly newsletters and have created a Outlook "mail rule" to gather returned/bounced messages. I then run a script that scans that folder of returned/bounced messages and gathers the email addresses to export to an excel spreadsheet.
Now that I have the list of email addresses I want to run a search command in phpMyAdmin to search the database for that list so I can delete them.
I know Excel can export the list comma separated but I can not figure out how to search the database for multiple entries. I was thinking that is a way to search for any of the following: first@email.com, second@email.com, third@email.com, etc..... and the result would show every response and I can then just "select all" to remove the entry from the database.
Does anyone have any ideas on how to do this?