Codex tools: Log in
<?php
add_action('comment_unapproved_to_approved', 'comment_approved');
function comment_approved($comment) {
if(is_email($comment->comment_author_email)) {
//do something
}
}
?>
comment_(old status)_to_(new status) action hook is located in wp-includes/comment.php