wordpress icon indicating copy to clipboard operation
wordpress copied to clipboard

BuddyPress From Email Change

Open benklocek opened this issue 8 years ago • 0 comments

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.

benklocek avatar Jan 17 '17 02:01 benklocek