Mika MAtikainen
Apr 15, 2020 · 4 min read
How to Notify Admin When New Account Is Created in UserWP?
/**
* Notify admin when a new customer account is created
*/
add_action( 'woocommerce_created_customer', 'woocommerce_created_customer_admin_notification' );
function woocommerce_created_customer_admin_notification( $customer_id ) {
wp_send_new_user_notifications( $customer_id, 'admin' );
}