• Resolved Ben

    (@ben69007)


    Hello,

    I’ve searched topic about my problem but I didn’t found email notification concerning Account creation on admin side (only concerning orders). Sorry if there was one.

    My problem is that when a customer creates an account (while ordering OR NOT) he is receiving a Welcome email, but admin (me) don’t receive anything. This is a big problem to follow new subscribing customers or prospect in the site.

    Is there a solution ?
    Thank you for sharing any kind of solution..

    NB : I precise that I receive all other email notifications (admin side and customer side). Only miss the account creation email notification on admin side.

    https://www.ads-software.com/plugins/woocommerce/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello there.

    Try to add this code into your theme’s functions.php file.

    add_action('woocommerce_created_customer', 'wc_add_admin_notification_of_new_user_registration' );
    function wc_add_admin_notification_of_new_user_registration($customer_id){
    
    	wp_new_user_notification( $customer_id );
    
    }

    I hope it helps.

    Thread Starter Ben

    (@ben69007)

    Hello Kharis,

    Thanx a lot to take the time to rescue me ??

    After adding this code into my childtheme functions.php file, I’ve tried 2 methods of customer account creation :
    – creating the account customer and proceed the first order at the same time.
    – and only creating the account (without ordering).

    It works perfectly!
    I received emails notifications of new accounts in both cases ??
    Thank you very much!

    Glad to hear that!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Account creation email notification on admin side’ is closed to new replies.