Skip to content

Instantly share code, notes, and snippets.

@JonasSkjodt
Created January 12, 2020 21:19
Show Gist options
  • Select an option

  • Save JonasSkjodt/6d6ec14416347832861cdbe67f5ff496 to your computer and use it in GitHub Desktop.

Select an option

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
<?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