Skip to content

Email admin when a new customer account is created

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', 'sc_woo_created_customer_admin_notification');

function sc_woo_created_customer_admin_notification($customer_id) {

  wp_send_new_user_notifications($customer_id, 'admin');

}
	
View Raw Code ID: 91003
© 2021 SC Workspace