• Resolved sinerowebdesign

    (@sinerowebdesign)


    We currently have a couple of notifications set-up which are all working fine also when a test email is triggered this is working. We can 100% confirm that no emails are being blocked or going into spam.

    For some reason the notification has stopped working on the ( New User Registration – For Admin )

    The registration form we are using is the WooCommerce registration page which has worked in the past ? could this be the reason ?

    Thanks

Viewing 9 replies - 1 through 9 (of 9 total)
  • Thread Starter sinerowebdesign

    (@sinerowebdesign)

    ** Update I have just registered a new account using the standard wordpress registration and the notifcation has worked so it appears its not working when users are created when customers register using the woocommerce registration function.

    Plugin Author bnfw

    (@voltronik)

    Hi @sinerowebdesign,
    Thanks for your message.

    You’re absolutely right. WooCommerce recently changed how they’re generating their New User Registration emails and as such, it’s broken this functionality with BNFW. I’m investigating how to get this working again but it might take a while to resolve.

    Thread Starter sinerowebdesign

    (@sinerowebdesign)

    Thanks for investigating, i’m sure the requirement will be needed as WooCommerce is now so widely used.

    Plugin Author bnfw

    (@voltronik)

    @sinerowebdesign Agreed. Would love to fix. Just depends on how difficult WooCommerce has made it.

    Was this fixed?
    We’re facing this situation and loosing lots of time on it.
    Please support asap. thanks

    Plugin Author bnfw

    (@voltronik)

    Hi @ochope,
    No update as yet but am looking at better support for WooCommerce this year.

    So there is currently NO WAY to sent “New User Registration – For Admin”?

    You can use this in your functions.php it will send you a email on each user registration to the main admin email address also to a CC or BCC of your choice.

    This is currently working for us.

    add_filter( 'woocommerce_email_headers', 'customer_new_account_admin_notification', 20, 3 );
    function customer_new_account_admin_notification( $header, $email_id, $order ) {
        // Only for "Customer new account" notification
        if( 'customer_new_account' == $email_id ) {
            // Get admin email
            $admin_email = get_option('admin_email');
    
            // Set the email as BCC
            //$header .= 'Cc: ' . $admin_email . "\r\n";
            $header .= 'Bcc: ' . '[email protected]' . "\r\n";
    
        }
        return $header;
    }
    
    Plugin Author bnfw

    (@voltronik)

    Hi @bwdgroup,
    Thanks for this.

    Whilst this doesn’t use BNFW for the notification, it should work just fine.

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘New User Registration – For Admin (not sending)’ is closed to new replies.