Hello,
Thank you for reaching out to us.
There is a built-in option to show the product images. Go to Email Customizer > Content > Order Items > PRODUCT IMAGE OPTION option.
If this is not what you want to show, could you send where you want those custom images to show so we can better assist you? For an example and code reference, you can try this out:
function render_product_short_description($item_id, $item, $order){
$_product = $order->get_product_from_item( $item );
echo "<br>" . $_product->post->post_excerpt;
}
add_action('woocommerce_order_item_meta_end', 'render_product_short_description',10,3);
This snippet will show the product short description on the order details table. You can edit it to show your custom field image value instead.
Hope this helps.
Best Regards,
Karla