Have the same problem here.
You must edit the e-mail address in Settings > General.
Cheers,
Kevin.
You can also modify who the admin email is sent to using the new_user_approve_email_admins filter.
https://github.com/picklewagon/new-user-approve/blob/master/new-user-approve.php#L395
I would like to use a filter/function in my functions file to have the email sent to a different admin email address. I see the github link above, but was hoping you could provide an example of what the filter/function would look like for it?
I believe that my clients spam filter is filtering the emails coming in because both the sender and receiver are the same emails (which sometimes is a tactic of spammers).
Thank you – great plugin!
Kelli
Something like this would accomplish what you want:
function my_admins( $admin_emails ) {
$admins = array();
$admins[] = 'different.admin@example.com';
return $admins;
}
add_filter( 'new_user_approve_email_admins', 'my_admins' );