I know how to change the notification email with a hook.
add_filter("gform_notification_email", "change_notification_email", 10, 2);
function change_notification_email($email, $form){
return "mattsex@gmail.com";
}
But how do you change the BCC with a hook?