The new e-mail templates are nice, however some don't do much to bring the customer back to the store as they don't have item links, and no thumbnails.
Also, the Merchant cannot just click to go see the item page, to answer a product question for example. You have to go to your store and search for the item!
So here is how to do add a product image, and links back to the item.
Go to Settings > Design >e-mails and edit the appropriate e-mail (This works in product related e-mails)
Link Item Name:
Add thumbnail with a link:
Example: in the New Review: Merchant, this is how the product section will look like:
Also, the Merchant cannot just click to go see the item page, to answer a product question for example. You have to go to your store and search for the item!
So here is how to do add a product image, and links back to the item.
Go to Settings > Design >e-mails and edit the appropriate e-mail (This works in product related e-mails)
Link Item Name:
Code:
<a href="[store_url]/_p_[catalogid].html">[name]</a>
Code:
<!--START: thumbnail--><a href="[store_url]/product.asp?itemid=[catalogid]"> <img alt="Image" src="[store_url]/[thumbnail]" style="border:0;"></a> <!--END: thumbnail-->
Code:
<p style="color: #333; font-family: 'Helvetica', 'Arial', sans-serif; font-weight: normal; text-align: left; line-height: 17px; font-size: 12px; margin: 0 0 10px; padding: 0;" align="left"> <!--START: thumbnail--><a href="[store_url]/product.asp?itemid=[catalogid]"> <img alt="Image" src="[store_url]/[thumbnail]" style="border:0;" /></a> <!--END: thumbnail--><br /> <strong>Product: <a href="[store_url]/_p_[catalogid].html">[name]</a></strong><br /><strong>Headline:</strong> [short_review]<br /><strong>Email:</strong> [user_email]<br /><strong>Name:</strong> [user_name]<br /><strong>Location:</strong> [user_city]<br /><strong>Review:</strong> [long_review]<br /><strong>Rating:</strong> [rating]<br /><strong>IP Address:</strong> [userip]<br /></p>
Comment