Hey Manuela!
This should indeed be possible, but only with a bit of custom coding. You can do that by adding code like the following to your theme’s functions.php file:
function tribe_add_admin_email_to_rsvp_email_recipient( $to ) {
if ( ! is_string( $to ) ) {
return $to;
}
$combined_to = array(
$to,
'[email protected]'
);
return $combined_to;
}
add_filter( 'tribe_rsvp_email_recipient', 'tribe_add_admin_email_to_rsvp_email_recipient' );
You would, of course, replace '[email protected]' with your real admin email.
I hope this helps!
George