Question of method here.
Every time someone responds to a comment you leave in my application, I want to send an email to that person (if notifications is on)...
At the moment i have a simple html php mailer that goes through every user that wants an email notification and sends it off..
This is working great, however lets say 5000 people all want a notification from this comment and people are commenting once every minute... will this cause a problem with php passing the mail over to the mail server or should it be able to cope with a for loop.. sending to all of those users every 1 minute?
Am i missing out on a trick?