How to disable wp_mail for all users except for admins?
I am using the following code to disable wp_mail
however how do I disable it only for non-admins. Any user with admin privileges should still receive their emails.
add_filter('wp_mail','disabling_emails', 10,1);
function disabling_emails( $args ){
unset ( $args['to'] );
return $args;
}