• Resolved loiaro

    (@loiaro)


    hi, I would like to know if with your plugin it is possible to customize the email address of the approver.

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

    (@hamza1010)

    Hi @loiaro,

    Thanks for contacting us,

    I hope you are doing well, We have to check this and we will keep you updated on this.

    Thanks & Regards

    WP Experts Support Team

    Plugin Support Mirza Hamza

    (@hamza1010)

    Hi @loiaro,

    Yes, In the free version of the New User Approve, you can use the following snippet to change admin email in all the emails that are sending from this plugin.

    Note: Please use this snippet and paste this code into the child theme’s functions.php file and let me know if you still have any issues.

    add_filter('new_user_approve_email_header',function($headers){

    $admin_email = '[email protected]' ;

    $from_name = get_option( 'blogname' );

    $headers = array( "From: \"{$from_name}\" <{$admin_email}>\n" );

    return $headers;

    });

    Thank you

    Thread Starter loiaro

    (@loiaro)

    ok, thanks a lot for your help. As soon as I try your suggestion, I will let you know updates

    Plugin Support Mirza Hamza

    (@hamza1010)

    Thanks for the feedback.

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