Hello there,
Good Day !!!
Thanks for your feedback ?? We will sure improve template management of email part in our upcoming version. We provided shortcode to add image in our email message. List of supported shortcodes specified in our Mail Settings.
Available Shortcodes to be used for subject and message
{product_name}
, {product_id}
, {product_link}
, {shopname}
, {email_id}
, {subscriber_email}
, {subscriber_name}
, {cart_link}
, {only_product_name}
, {only_product_sku}
, {product_image}
If you want to show the image with specified size then you can try something like this one {product_image=thumbnail}
, (you can pass parameter like thumbnail/medium/large
) it also accept any custom width and height by pass something like this one {product_image=100x100}
(widthxheight)
When you use {product_link}
or {cart_link}
make sure you add anchor tag(some email client shows as plain text instead of hyperlink)
<a href='{product_link}'>{product_name}</a>
<a href='{cart_link}'>{cart_link}</a>
Thanks.