function action_wpcf7_before_send_mail( $contact_form ) {
$form_id = $contact_form->posted_data['_wpcf7'];
$fp = fopen("file8.txt", "w");
fwrite($fp, $form_id);
fclose($fp);
};
add_action( 'wpcf7_before_send_mail', 'action_wpcf7_before_send_mail', 10, 1 );