Hi,
You can use the code snippet below to customize the recipients to whom notifications should be sent when private content is created (conversations, private pages, private files…).
function wpca_customize_admin_notifications_recipients() {
return [1, 8];
}
add_filter('cuar/notifications/administrator-recipient-ids', 'wpca_customize_admin_notifications_recipients');
I hope that helps.
Best regards.