Skip to content

Instantly share code, notes, and snippets.

@Ezekiel1349
Forked from claudiosanches/plugin.php
Created July 15, 2021 16:38
Show Gist options
  • Select an option

  • Save Ezekiel1349/eba0a40b513a3d9244a0b1e15f7d4e35 to your computer and use it in GitHub Desktop.

Select an option

Save Ezekiel1349/eba0a40b513a3d9244a0b1e15f7d4e35 to your computer and use it in GitHub Desktop.
WooCommerce - Send "New User Registration" email to admins when new customer is created.
<?php
/**
* Send "New User Registration" email to admins when new customer is created on WooCommerce.
*
* @param int $id New customer ID.
*/
function my_wc_customer_created_notification( $id ) {
wp_new_user_notification( $id, null, 'admin' );
}
add_action( 'woocommerce_created_customer', 'my_wc_customer_created_notification' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment