Skip to main content
Version: v9 (Current)

MemberPress WordPress Notification Integration

MemberPress WordPress notification integration provides enhanced control over membership-related emails and notifications. This guide shows how to prevent duplicate emails and customize notification behavior when using MemberPress with the Notification plugin.

Avoid unwanted password reset mail from MemberPress​

add_filter( 'mepr-wp-mail-recipients', function( $recipients, $subject, $message, $headers ) {
if ( strpos( $subject, 'Password Reset') !== false ) {
$recipients = []; // Remove all recipients.
}
return $recipients;
}, 11, 4 );