Informer

Plugin which sends emails to us from WordPress, for comments and new posts, except our own comments and posts. You can disable the option in your profile. At default, all user are receiving an email except the author.
Crafted by Inpsyde
The team at Inpsyde is engineering the web and WordPress since 2006.
Donation?
You want to donate – we prefer a positive review, not more.
Bugs, technical hints or contribute
Please give us feedback, contribute and file technical bugs on GitHub Repo.
API
= Plugin settings =
By default, the plugin sends a mail to all registered users of a blog on new posts or comments, except a user disables the functionality for itself (opt-out). As of version 0.0.5 you can change this behaviour to opt-in with the filter iac_default_opt_in :
add_filter( 'iac_default_opt_in', '__return_true' );
Make sure, this code runs on the action plugins_loaded with a priority lower than 10 or earlier.
With version 0.0.5 the plugin got settings (Settings→Reading). The one new option allows you to send all emails with the Bcc-header to hide users email-addresses to all other recipients. This option is disabled by default. You have access to the default settings via the filter iac_default_options. An array is passed to this function with the key send_by_bcc. Change the value to ‘1’ and return the array on your callback function.
User settings handling
To change the users settings (inform about posts, inform about comments) use the action iac_save_user_settings like this:
do_action(
'iac_save_user_settings',
$user_id,
$inform_about_posts, # '1', '0' or NULL if the user didn't changed anything
$inform_about_comments # '1', '0' or NULL if the user didn't changed anything
);
Getting the current user settings is also easy:
$user_settings = apply_filters( 'iac_get_user_settings', array(), $user_id );= License =
Good news, this plugin is free for everyone! Since it’s released under the GPL, you can use it free of charge on your personal or commercial blog.
Translations
The plugin comes with various translations, please refer to the WordPress Codex for more information about activating the translation. If you want to help to translate the plugin to your language, please have a look at the .po file which contains all definitions and may be used with a gettext editor like Poedit (Windows) or plugin for WordPress Localization.
Download & install the zip archive
The plugin package installer can be downloaded from the WP2E project tab called “code”.
1 – Select the version to download if this option is available otherwise the “latest” version of the main plugin will be used.
2 – After downloading the zip archive install the plugin package installer in you local environment and activate the script from the plugin list.
3 – Under the section “Plugins” of the admin dashboard you should see a new “Dependencies & Licenses” link. Follow the instructions from this panel to finalize the installation of the missing dependencies.
- Give a name to your project
- Download the Installer Package
- Install & activate the plugin locally
- Install the suggested dependencies
Tips: Use the WP2E panel to add/suggest new dependencies to the local installation. Press F5 in the list of dependencies if the changes are not displayed right away.



