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
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