Notification – Custom Notifications and Alerts for WordPress
WordPress sends emails you can’t customize. You can’t change who receives them, what they say, or how they look. And if you need to notify your team about content changes, user activity, or security events — WordPress simply doesn’t do that. Notification fixes this. It gives you complete control over what WordPress sends, to whom, and through which channel. Replace rigid default emails with fully customizable messages, or create entirely new notifications triggered by any WordPress event. No coding required — set up your first notification in under 5 minutes. WHAT YOU CAN DO WITH THE FREE VERSION Replace default WordPress emails — Disable any built-in email (new user, password reset, comments, etc.) and replace it with your own version using the built-in Wizard Create custom notifications — Get notified when posts are published, users register, comments arrive, plugins update, and 50+ other WordPress events Use dynamic content — Insert Merge Tags like {post_title}, {user_email}, or {comment_content} to personalize every message Send to anyone — Route notifications to specific email addresses, users, or entire roles Send via email or webhook — Email is built-in; webhooks let you connect to any external service or automation tool Control with precision — Enable or disable individual triggers, configure carriers, and set up multiple notifications per event REPLACE DEFAULT WORDPRESS EMAILS The built-in Wizard walks you through disabling WordPress default emails and replacing them with your own. You keep full control over the content, recipients, and formatting — no more generic messages you can’t edit. BUILT-IN TRIGGERS Over 50 triggers are ready to use out of the box. Enable or disable them in Settings. Posts & Custom Post Types — published, drafted, updated, pending review, approved, trashed (works with any CPT) Taxonomy terms — created, updated, deleted (works with any taxonomy) Comments, Pingbacks & Trackbacks — new, replied, approved, unapproved, spam, trashed Users — registered, profile updated, logged in, failed login, logged out, password reset/changed, deleted Media — added, updated, deleted Plugins — activated, deactivated, installed, removed, updated Themes — installed, switched, updated WordPress — available updates (on a schedule you define) Privacy — personal data erased, erase request, exported, export request Each trigger comes with its own set of Merge Tags, plus you can use Global Merge Tags ({site_title}, {admin_email}, {home_url}, etc.) anywhere. EXTENSIONS Extend the plugin with additional carriers, triggers, and features: Webhooks – send and receive Webhooks Conditionals – send Notifications only when specific conditions are met Custom Fields – use any meta value in your Notifications Slack – post messages to Slack channel Push – send push notifications via browser’s native system Discord – post messages to Discord channel Twilio – send bulk SMS messages from your Twilio registered phone number Scheduled Triggers – schedule your notifications based on events time Review Queue – catch your Notifications into a queue for manual review WooCommerce – triggers specific to WooCommerce Pushbullet – send Push and SMS Notifications via your phone Pushover – send Push messages to devices registered in Pushover SendGrid – send emails using SendGrid service Mailgun – send emails using Mailgun service File Log – save Notifications as file logs on the server bbPress – bbPress triggers BuddyPress – BuddyPress triggers and integration with their notification system Signature – add a signature to all your emails automatically Email Attachments – attach files to your notification DEVELOPER-FRIENDLY Notification is designed to be extended. Create custom Triggers from any do_action() call, add Merge Tags in a single line of code, or build entirely new Carriers. The plugin can be bundled with your theme or plugin and white-labeled with one function call. Developer documentation Extension Boilerplate to start building your own add-on USE CASES Editorial workflows — Notify editors when a post is submitted for review, and authors when it’s approved or scheduled Security monitoring — Get alerts on failed login attempts, user role changes, or plugin activations Client sites — Replace confusing default WordPress emails with branded, clear messages for your clients Team coordination — Send Slack or webhook notifications when content is updated, users register, or comments need moderation WooCommerce stores — Trigger custom alerts for orders, stock changes, and customer activity (with the WooCommerce extension) Here are some of the most popular specific setups. See the FAQ section for step-by-step details on each. Notify authors when their post is published Email editors when a post is submitted for review Replace the default new user welcome email with a branded version Alert admins on failed login attempts with IP address details Get notified when someone edits a published post Send Slack/webhook alerts when plugins are activated or updated Notify users when their role changes Disable default WordPress emails and replace them with custom ones Monitor user registrations, password resets, and account deletions Set up comment moderation notifications for post authors USEFUL LINKS Documentation GitHub repository Report a bug CUSTOM DEVELOPMENT BracketSpace – the company behind this plugin provides custom WordPress plugin development services. We can create any custom plugin for you.
Top keywords
- notifications13×1.62%
- send12×1.50%
- wordpress12×1.50%
- emails10×1.25%
- custom9×1.12%
- email9×1.12%
- post9×1.12%
- triggers9×1.12%
- updated8×1.00%
- default7×0.87%
- messages7×0.87%
- replace7×0.87%
Simple SMTP
Adds a simple, no-fuss SMTP settings to your WordPress installation that lets you define custom settings, which is especially useful for hosts with no control over the php mail functionality. If logging is enabled, a new segment in the settings panel will show up with a 30-day overview of recent emails, and will automatically prune older logs. Please see the FAQ if you want a more permanent solution. For more information, please see the project wiki on GitHub. Environment and constant overriding (optional) This plugin will prefer environmental and constant-stored values over the plugin-saved equivalent settings, making it easier to use this plugin via deployment. These can be either stored in your systems env setup, or in wp-config.php as define( 'SEE_BELOW', 'your_value_here' );. Accepted Parameters SMTP_HOST (string) Mail server hostname. SMTP_PORT (integer) Port address (usually 25, 465 or 587). SMTP_AUTH (integer, 1 or 0) Pass below credentials to your mail server. SMTP_USER (string) The mail username for this account. SMTP_PASS (string) The password for the mailer account. SMTP_FROM (string) Enforce all emails come from this email address. SMTP_FROMNAME (string) Enforce all emails to have a certain email name. SMTP_SEC (string) Use a particular email security method (accepts ‘def’ (default), ‘ssl’, ‘tls’ and ‘off’). SMTP_NOVERIFYSSL (boolean) Disable validation of the SMTP server certificate (not recommended). SMTP_LOG (boolean) Controls the logging capability and visibility. SMTP_DISABLE (boolean) Disables the mailer. They will still be logged if enabled, but won’t send out. It is recommended to store at least SMTP_PASS in your wp-config.php file (with the correct file permissions set). If the openssl extension is available, the plugin will attempt to encrypt the password in the database.
Top keywords
- smtp14×4.83%
- string6×2.07%
- mail4×1.38%
- settings4×1.38%
- boolean3×1.03%
- email