How to get product image and price in shipping email template.
For image i add a code in shipping/default.phtml
<?php
$productId = $_item->getProductId();
$objectManagerHere = \Magento\Framework\App\ObjectManager::getInstance();
$product = $objectManagerHere->get('Magento\Catalog\Model\Product')->load($productId);
$productImage = $this->helper('Magento\Catalog\Helper\Image')->init($product, 'category_page_list')->getUrl();
?>
<td>
<img height="80" width="80" src="<?= $productImage ?>" alt="<?= __('Product Image');?>">
</td>
but i get's only placeholder image