How to use php to send multiple emails at a time
On a website users can select categories of what information they want to receive from the various members, ie. if they select category 'Flowers', their request is emailed only to members in the Flowers category who can then respond directly to the user.
I know how to:
Code:
SELECT email FROM members WHERE category = 'Flowers';
but what is the best way to mail an email message using php to all the email addresses that are listed in the result?
And what if they select more than one category?
Thanks! e :)