Skip to content

Instantly share code, notes, and snippets.

@propertyhive
Created September 27, 2025 10:31
Show Gist options
  • Save propertyhive/f0a047c417fe221dc148a9cc4b014998 to your computer and use it in GitHub Desktop.
Save propertyhive/f0a047c417fe221dc148a9cc4b014998 to your computer and use it in GitHub Desktop.
Disable property enquiry emails from sending
add_filter( 'wp_mail', 'stop_property_enquiry_email' );
function stop_property_enquiry_email( $args ) {
if ( isset( $args['subject'] ) && strpos( $args['subject'], 'Property Enquiry' ) !== false ) {
// Return false to completely cancel the email.
return false;
}
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment