Last active
February 3, 2023 09:48
-
-
Save jjmontalban/a9dfea46a20a8d95592bd06455ac3375 to your computer and use it in GitHub Desktop.
Enviar email al admin por cada registro de cliente
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
<?php | |
/* Enviar email al admin por cada registro de cliente */ | |
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' ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment