Wordpress 404 notification by email
I couldn’t find something that did just what I wanted and no more: send me an email when someone gets a 404 error on my blog. It seems pretty simple, and it really is. More than that actually. It’s problably the simplest plugin I’ve ever written.
Check it out:
This is the main part of the code, the one gets executed everytime the get_header
hook is called. It basically just checks the $wp_query object to see if the current url gives a 404 error and then passes that url to the email_admin function
This function sets some headers for the email, such as the sender’s name and email, and the subject of the message, and then sends the message. No error is shown if the message can’t be sent, as this would be displayed on the page.
UPDATE: Finally available on the wordpress plugin repository