Skip to content

Instantly share code, notes, and snippets.

@jjmontalban
Created May 11, 2021 10:38
Show Gist options
  • Save jjmontalban/e8b2cf91e4e86712faa837bd62205f1e to your computer and use it in GitHub Desktop.
Save jjmontalban/e8b2cf91e4e86712faa837bd62205f1e to your computer and use it in GitHub Desktop.
Enviar email al admin por cada registro de cliente
<?php
/**
* @snippet Enviar email al admin por cada registro de cliente
* @author https://docs.woocommerce.com/document/notify-admin-new-account-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' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment