Skip to content

Instantly share code, notes, and snippets.

@searchwpgists
Last active September 23, 2025 12:54
Show Gist options
  • Select an option

  • Save searchwpgists/1e462fd0d9bee1423baa85983b0260ab to your computer and use it in GitHub Desktop.

Select an option

Save searchwpgists/1e462fd0d9bee1423baa85983b0260ab to your computer and use it in GitHub Desktop.
Change recipeint email for email summaries
<?php
// Change the recipient of SearchWP email summaries.
add_filter( 'searchwp/email_summaries/email_to', function( $email ) {
return 'recipient_email@domain.com'; // Replace with your desired email
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment