Whenever I'm doing development on a site which sends emails to users I have to remember to comment out the mail() code so that I don't accidentally trigger the notification email whilst fiddling around and debugging, it's a pain and occasionally I forget and send emails to people when I didn't mean to.
is there a way to enforce a whitelist at the php.ini level (or some other low level) of email addresses that mail() is allowed to send too?
Do other people have clever ways of avoiding this issue?