wordpress
wordpress copied to clipboard
BuddyPress From Email Change
I have a filter set to change the Personal Messages from address for just BuddyPress emails, but it's still sending from my default WP email address.
add_action( 'bp_email', function( $email_type, $email_obj ) { $email_obj->set_from( "[email protected]", "PM Notification" ); }, 100, 2 );
I can see that there are some customizations within the plugin for BuddyPress, but I'm not sure how to work with them.