Hi, I have a question on performance... I have a php page that when updated by a user, sends out an email to all the users subscribed to that page. Right now, I am looping through the subscribers and sending out the emails. The subscriber count can go up to a hundred or more.
Should I stick with this, or do a multiple record insert into MySQL and then run a periodic cron to send the mails out? Which method would work faster for the users using this page? 😕