1. Home
  2. Knowledge Base
  3. WooCommerce Members Only
  4. Advanced Topics for Members Only
  5. Filter email recipient for new registration notifications

Filter email recipient for new registration notifications

By default, notification emails for new registrations will go to the site admin. You can filter the email address using this snippet:

https://gist.github.com/5f01430680a2b36fbfcd2c0efefb9eac

Note that you’ll need to separate additional email addresses with a comma.

Here’s how to add a snippet.

Disable new user registration email

If you’d like to disable the email that is sent when a new user registers, you can use this snippet:

<?php
/**
* Disable new registration emails
*/
add_filter( 'wcmo_disable_new_registration_email', '__return_true' );

Here’s how to add a snippet.

Was this article helpful?

Related Articles