Do you want to send automatically email to your registered users and notify them oa a new post on WordPress Blog? If yes Jus read it out how to do it easily!
Just paste the following code on your functions.php file:
Just paste the following code on your functions.php file:
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');
Once saved, all registered users will receive an email when a new post is published.
If you enjoyed this article, please consider sharing it!