If you want to display a contact form for out of stock products in WooCommerce, you can use the following code snippet:
add_action( 'woocommerce_after_shop_loop_item_title', 'bbloomer_contact_form_AfterTitle', 9 );
function bbloomer_contact_form_AfterTitle() {
global $product;
if ( !$product->is_in_stock() ) {
echo do_shortcode( '[contact-form-7 id="6541" title="Contact form 1"]' );
}
}