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?

link|improve this question
Is this on the production server, or some sort of local environment? – Pekka Apr 15 '11 at 16:40
Local dev. environment. – Tom Willmot Apr 17 '11 at 7:43
feedback

3 Answers

up vote 3 down vote accepted

I would do this at the SMTP level. Configure it there and have PHP use a specific SMTP server that is only for development.

link|improve this answer
Thanks Brad and Piskvor, sounds like filtering at the SMTP level is the best option – Tom Willmot Apr 17 '11 at 7:44
feedback

Why not have a maintenance mode setting for your site?

if ($maintenance_mode) {
    // only send mail to admin
} else {
    // send mail to users
}
link|improve this answer
Ideally, it'd be at a lower than code level as I work on lots of different sites. – Tom Willmot Apr 17 '11 at 7:43
feedback

Not at that level, but there are various workarounds:

  • set your outgoing SMTP server to one that doesn't forward the mail (i.e. forbid the forwarding at SMTP server; this may be easiest, as you don't have to handle the filtering anywhere in your code)
  • use a wrapper like phpMailer, and extend its send() method, do the filtering there (useful as you can change the actual recipient to be e.g. your.own.address@example.com, so you'll still see that mails are going out, but redirected to yourself)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.