Skip to content

Instantly share code, notes, and snippets.

@rafabarbosa
Forked from claudiosanches/plugin.php
Created November 7, 2017 12:48
Show Gist options
  • Save rafabarbosa/50925c799107847406a51ad0cdf6e89f to your computer and use it in GitHub Desktop.
Save rafabarbosa/50925c799107847406a51ad0cdf6e89f 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