Created
January 12, 2020 21:19
-
-
Save JonasSkjodt/6d6ec14416347832861cdbe67f5ff496 to your computer and use it in GitHub Desktop.
Change reply to email in Buddypress emails from Wordpress admin email to custom email
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| add_filter( 'bp_email_set_reply_to', function( $retval ) { | |
| return new BP_Email_Recipient( '[email protected]' ); | |
| } ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment