This code sends an email to admin to advise of every new customer account created.
/**
* Email admin when a new customer account is created
*/
add_action('woocommerce_created_customer', 'cc_created_customer_admin_notification');
function cc_created_customer_admin_notification($customer_id) {
wp_send_new_user_notifications($customer_id, 'admin');
}
View Raw
Code ID: 91003