Good Morning,
I have an ever growing member database that is currently at around 6000 (developed over the past 2 weeks), and expect it to be in the hundreds of thousands within a few more weeks...
My problem is that alot of members are using a single email address for multiple members, and I would like to limit the emails that we send out to just 1 per email address to save on the email load and time...
Here is my query:
SELECT user, pass, email
FROM members
WHERE mem_status <>'T'
ORDER BY email asc";
What do I need to do to not send multiple emails to the same address...
Thank you in advance for your feedback.
I'm sure it is something simple that I should know, but I'm finding every day that there is alot I still don't know about programming, expecially when it comes to MySql...
Douglas