Created
May 17, 2021 05:50
-
-
Save wbcomdev/8b61062af2988b38ed704d22261c74a9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Notify admin when a new customer account is created. | |
| */ | |
| function wb_woocommerce_created_customer_admin_notification( $customer_id ) { | |
| wp_send_new_user_notifications( $customer_id, 'admin' ); | |
| } | |
| add_action( 'woocommerce_created_customer', 'wb_woocommerce_created_customer_admin_notification' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment