Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jkudish/584603 to your computer and use it in GitHub Desktop.
Save jkudish/584603 to your computer and use it in GitHub Desktop.
function email_members($post_ID) {
global $wpdb;
$usersarray = $wpdb->get_results("SELECT user_email FROM $wpdb->users;");
$users = implode(",", $usersarray);
mail($users, "New WordPress recipe online!", 'A new recipe have been published on http://www.wprecipes.com');
return $post_ID;
}
add_action('publish_post', 'email_members');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment