• Resolved Joe777

    (@joe777)


    My website has three users with the ‘Administrator’ role. When a new user registers, an email is sent to one of the Administrators. I can’t find any way to select which Administrator it is sent to. Can I change which one is sent to, or have it sent to more than one Administrator?

    I am using the free version of the ‘New User Approve’ plugin. I searched the documentation for an answer to the question, and spent time googling it, but was unable to find a solution.

    I hope you can help me with this.

    Thank you.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Support Mirza Hamza

    (@hamza1010)

    Hi @joe777,

    Thanks for contacting us,

    I hope you are doing well, At the moment this feature is not available in the FREE version.

    Thanks & Regards

    WP Experts Support Team

    Thread Starter Joe777

    (@joe777)

    Thank you for your reply. Can you tell me what algorithm is used to select which Admin the notification is sent to? For example, does it choose the first Admin in alphabetical order?

    Plugin Support Mirza Hamza

    (@hamza1010)

    Hi @joe777,

    Sorry, this is possible in the plugin, you can even send a ‘Registration notification email’ to more than 1 email.

    Please paste this code into your child theme’s function.php and let us know if it works for you.

    add_filter( 'new_user_approve_email_admins', 'new_user_approve_email_admins_callback' );
    
    function new_user_approve_email_admins_callback($admin_email){
        $admin_email = array("[email protected]", "[email protected]");
        return $admin_email;
    }

    Thank you

    Plugin Support Mirza Hamza

    (@hamza1010)

    Hi @joe777,

    We are resolving this thread due to a lack of activity if you have any questions so please open a new thread.

    Thank you

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Registration notification email’ is closed to new replies.