External image details getting added in order email template in Magento 2 Planned maintenance scheduled April 23, 2019 at 00:00UTC (8:00pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?How to add email in cc for order confirmation email template?How do I fix order item details in email template?Magento transactional email new order email template product image missingMagento 2 - Order email - template override not workingExtending Order Email template in Magento 2Add attribute in magento order email confirmationMagento 2.2.5: Email Template Order AdminSending order confirmation email template in Magento 2Magento2 : Order Items Email Template AdjustmentHow to add product image to new order email template
How to compare two different files line by line in unix?
How could we fake a moon landing now?
Hangman Game with C++
Amount of permutations on an NxNxN Rubik's Cube
What was the first language to use conditional keywords?
Should I use a zero-interest credit card for a large one-time purchase?
How does Python know the values already stored in its memory?
Why is Nikon 1.4g better when Nikon 1.8g is sharper?
Why does the remaining Rebel fleet at the end of Rogue One seem dramatically larger than the one in A New Hope?
Time to Settle Down!
How often does castling occur in grandmaster games?
Is a ledger board required if the side of my house is wood?
Do I really need to have a message in a novel to appeal to readers?
Has negative voting ever been officially implemented in elections, or seriously proposed, or even studied?
What order were files/directories outputted in dir?
Project Euler #1 in C++
How does the secondary effect of the Heat Metal spell interact with a creature resistant/immune to fire damage?
How to play a character with a disability or mental disorder without being offensive?
Chinese Seal on silk painting - what does it mean?
Do wooden building fires get hotter than 600°C?
What is this clumpy 20-30cm high yellow-flowered plant?
Trademark violation for app?
Is it a good idea to use CNN to classify 1D signal?
How much damage would a cupful of neutron star matter do to the Earth?
External image details getting added in order email template in Magento 2
Planned maintenance scheduled April 23, 2019 at 00:00UTC (8:00pm US/Eastern)
Announcing the arrival of Valued Associate #679: Cesar Manara
Unicorn Meta Zoo #1: Why another podcast?How to add email in cc for order confirmation email template?How do I fix order item details in email template?Magento transactional email new order email template product image missingMagento 2 - Order email - template override not workingExtending Order Email template in Magento 2Add attribute in magento order email confirmationMagento 2.2.5: Email Template Order AdminSending order confirmation email template in Magento 2Magento2 : Order Items Email Template AdjustmentHow to add product image to new order email template
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I am trying to add product image in the sales order email template with overriding in the path
/app/design/frontend/vendor/Mytheme/Magento_Sales/templates/email/items/order/default.phtml.
Code Written:
$objectManager = MagentoFrameworkAppObjectManager::getInstance();
$_product = $objectManager->get('MagentoCatalogModelProduct')->load($_item->getProductId());
$imageHelper = $objectManager->get('MagentoCatalogHelperImage');
$image_url = $imageHelper->init($_product, 'product_thumbnail_image')->setImageFile($_product->getFile())->resize(100, 100)->getUrl();?>
<img src="<?php echo $image_url;?>"/>
Unfortunately, I am getting this in the mail. originals source is overridden by src which is getting generated. Not able to get an image in the mail.
Inspected element:
<img data-imagetype="External" **src="/actions/ei?u=http%3A%2F%2F...%3A1080%2FQPwebstore%2Fpub%2Fmedia%2Fcatalog%2Fproduct%2Fb%2Fa%2Fballpen_with_stylus1.jpg&d=2019-04-16T13%3A15%3A46.063Z"**
**originalsrc="http://......./pub/media/catalog/product/b/a/ballpen_with_stylus1.jpg"** data-connectorsauthtoken="1" data-imageproxyendpoint="/actions/ei" data-imageproxyid="" class="x_product-image-photo" width="200" height="200" alt="Stylus Pen" style="border:0; height:auto; line-height:100%; outline:none; text-decoration:none">
Kindly help me to resolve this issue..
magento2 sales-order product-images email-templates order-email
add a comment |
I am trying to add product image in the sales order email template with overriding in the path
/app/design/frontend/vendor/Mytheme/Magento_Sales/templates/email/items/order/default.phtml.
Code Written:
$objectManager = MagentoFrameworkAppObjectManager::getInstance();
$_product = $objectManager->get('MagentoCatalogModelProduct')->load($_item->getProductId());
$imageHelper = $objectManager->get('MagentoCatalogHelperImage');
$image_url = $imageHelper->init($_product, 'product_thumbnail_image')->setImageFile($_product->getFile())->resize(100, 100)->getUrl();?>
<img src="<?php echo $image_url;?>"/>
Unfortunately, I am getting this in the mail. originals source is overridden by src which is getting generated. Not able to get an image in the mail.
Inspected element:
<img data-imagetype="External" **src="/actions/ei?u=http%3A%2F%2F...%3A1080%2FQPwebstore%2Fpub%2Fmedia%2Fcatalog%2Fproduct%2Fb%2Fa%2Fballpen_with_stylus1.jpg&d=2019-04-16T13%3A15%3A46.063Z"**
**originalsrc="http://......./pub/media/catalog/product/b/a/ballpen_with_stylus1.jpg"** data-connectorsauthtoken="1" data-imageproxyendpoint="/actions/ei" data-imageproxyid="" class="x_product-image-photo" width="200" height="200" alt="Stylus Pen" style="border:0; height:auto; line-height:100%; outline:none; text-decoration:none">
Kindly help me to resolve this issue..
magento2 sales-order product-images email-templates order-email
<img data-imagetype="External" src="/actions/ei?u=http%3A%2F%2F...%3A1080%2FQPwebstore%2Fpub%2Fmedia%2Fcatalog%2Fproduct%2Fb%2Fa%2Fballpen_with_stylus1.jpg&d=2019-04-16T13%3A15%3A46.063Z" originalsrc="http://......./pub/media/catalog/product/b/a/ballpen_with_stylus1.jpg" data-connectorsauthtoken="1" data-imageproxyendpoint="/actions/ei" data-imageproxyid="" class="x_product-image-photo" width="200" height="200" alt="Stylus Pen" style="border:0; height:auto; line-height:100%; outline:none; text-decoration:none"> ..........this is the element while inspecting
– SUBBULAKSHMI G
2 days ago
add a comment |
I am trying to add product image in the sales order email template with overriding in the path
/app/design/frontend/vendor/Mytheme/Magento_Sales/templates/email/items/order/default.phtml.
Code Written:
$objectManager = MagentoFrameworkAppObjectManager::getInstance();
$_product = $objectManager->get('MagentoCatalogModelProduct')->load($_item->getProductId());
$imageHelper = $objectManager->get('MagentoCatalogHelperImage');
$image_url = $imageHelper->init($_product, 'product_thumbnail_image')->setImageFile($_product->getFile())->resize(100, 100)->getUrl();?>
<img src="<?php echo $image_url;?>"/>
Unfortunately, I am getting this in the mail. originals source is overridden by src which is getting generated. Not able to get an image in the mail.
Inspected element:
<img data-imagetype="External" **src="/actions/ei?u=http%3A%2F%2F...%3A1080%2FQPwebstore%2Fpub%2Fmedia%2Fcatalog%2Fproduct%2Fb%2Fa%2Fballpen_with_stylus1.jpg&d=2019-04-16T13%3A15%3A46.063Z"**
**originalsrc="http://......./pub/media/catalog/product/b/a/ballpen_with_stylus1.jpg"** data-connectorsauthtoken="1" data-imageproxyendpoint="/actions/ei" data-imageproxyid="" class="x_product-image-photo" width="200" height="200" alt="Stylus Pen" style="border:0; height:auto; line-height:100%; outline:none; text-decoration:none">
Kindly help me to resolve this issue..
magento2 sales-order product-images email-templates order-email
I am trying to add product image in the sales order email template with overriding in the path
/app/design/frontend/vendor/Mytheme/Magento_Sales/templates/email/items/order/default.phtml.
Code Written:
$objectManager = MagentoFrameworkAppObjectManager::getInstance();
$_product = $objectManager->get('MagentoCatalogModelProduct')->load($_item->getProductId());
$imageHelper = $objectManager->get('MagentoCatalogHelperImage');
$image_url = $imageHelper->init($_product, 'product_thumbnail_image')->setImageFile($_product->getFile())->resize(100, 100)->getUrl();?>
<img src="<?php echo $image_url;?>"/>
Unfortunately, I am getting this in the mail. originals source is overridden by src which is getting generated. Not able to get an image in the mail.
Inspected element:
<img data-imagetype="External" **src="/actions/ei?u=http%3A%2F%2F...%3A1080%2FQPwebstore%2Fpub%2Fmedia%2Fcatalog%2Fproduct%2Fb%2Fa%2Fballpen_with_stylus1.jpg&d=2019-04-16T13%3A15%3A46.063Z"**
**originalsrc="http://......./pub/media/catalog/product/b/a/ballpen_with_stylus1.jpg"** data-connectorsauthtoken="1" data-imageproxyendpoint="/actions/ei" data-imageproxyid="" class="x_product-image-photo" width="200" height="200" alt="Stylus Pen" style="border:0; height:auto; line-height:100%; outline:none; text-decoration:none">
Kindly help me to resolve this issue..
magento2 sales-order product-images email-templates order-email
magento2 sales-order product-images email-templates order-email
edited 2 days ago
ARUNPRABAKARAN M
482113
482113
asked 2 days ago
SUBBULAKSHMI GSUBBULAKSHMI G
759
759
<img data-imagetype="External" src="/actions/ei?u=http%3A%2F%2F...%3A1080%2FQPwebstore%2Fpub%2Fmedia%2Fcatalog%2Fproduct%2Fb%2Fa%2Fballpen_with_stylus1.jpg&d=2019-04-16T13%3A15%3A46.063Z" originalsrc="http://......./pub/media/catalog/product/b/a/ballpen_with_stylus1.jpg" data-connectorsauthtoken="1" data-imageproxyendpoint="/actions/ei" data-imageproxyid="" class="x_product-image-photo" width="200" height="200" alt="Stylus Pen" style="border:0; height:auto; line-height:100%; outline:none; text-decoration:none"> ..........this is the element while inspecting
– SUBBULAKSHMI G
2 days ago
add a comment |
<img data-imagetype="External" src="/actions/ei?u=http%3A%2F%2F...%3A1080%2FQPwebstore%2Fpub%2Fmedia%2Fcatalog%2Fproduct%2Fb%2Fa%2Fballpen_with_stylus1.jpg&d=2019-04-16T13%3A15%3A46.063Z" originalsrc="http://......./pub/media/catalog/product/b/a/ballpen_with_stylus1.jpg" data-connectorsauthtoken="1" data-imageproxyendpoint="/actions/ei" data-imageproxyid="" class="x_product-image-photo" width="200" height="200" alt="Stylus Pen" style="border:0; height:auto; line-height:100%; outline:none; text-decoration:none"> ..........this is the element while inspecting
– SUBBULAKSHMI G
2 days ago
<img data-imagetype="External" src="/actions/ei?u=http%3A%2F%2F...%3A1080%2FQPwebstore%2Fpub%2Fmedia%2Fcatalog%2Fproduct%2Fb%2Fa%2Fballpen_with_stylus1.jpg&d=2019-04-16T13%3A15%3A46.063Z" originalsrc="http://......./pub/media/catalog/product/b/a/ballpen_with_stylus1.jpg" data-connectorsauthtoken="1" data-imageproxyendpoint="/actions/ei" data-imageproxyid="" class="x_product-image-photo" width="200" height="200" alt="Stylus Pen" style="border:0; height:auto; line-height:100%; outline:none; text-decoration:none"> ..........this is the element while inspecting
– SUBBULAKSHMI G
2 days ago
<img data-imagetype="External" src="/actions/ei?u=http%3A%2F%2F...%3A1080%2FQPwebstore%2Fpub%2Fmedia%2Fcatalog%2Fproduct%2Fb%2Fa%2Fballpen_with_stylus1.jpg&d=2019-04-16T13%3A15%3A46.063Z" originalsrc="http://......./pub/media/catalog/product/b/a/ballpen_with_stylus1.jpg" data-connectorsauthtoken="1" data-imageproxyendpoint="/actions/ei" data-imageproxyid="" class="x_product-image-photo" width="200" height="200" alt="Stylus Pen" style="border:0; height:auto; line-height:100%; outline:none; text-decoration:none"> ..........this is the element while inspecting
– SUBBULAKSHMI G
2 days ago
add a comment |
1 Answer
1
active
oldest
votes
copy vendor/magento/module-sales/view/frontend/templates/email/items/order/default.phtml
to yout template folder app/design/frontend/[VENDOR]/[TEMPLATE]/Magento_Sales/templates/email/items/order/default.phtml
and adding the image column there...
$_item = $block->getItem();
$_order = $_item->getOrder();
$_store = $_order->getStore();
$_imageHelper = MagentoFrameworkAppObjectManager::getInstance()->get('MagentoCatalogHelperImage');
$_baseImageUrl = $_store->getBaseUrl(MagentoFrameworkUrlInterface::URL_TYPE_MEDIA).'catalog/product';
and right below
<img src="<?= $_imageHelper->init($_item->getProduct(), 'small_image', ['type'=>'small_image'])->keepAspectRatio(true)->resize('65','65')->getUrl();?>" alt="<?= __('Product Image');?>">
i have tried .. i am getting same issue
– SUBBULAKSHMI G
2 days ago
any error generate ?
– Rk Rathod
2 days ago
no error........... i am getting below one while inspecting in mail.........<img data-imagetype="External" src="/actions/ei?u=http%3A%2F%2F...%3A1080%2FQPwebstore%2Fpub%2Fmedia%2Fcatalog%2Fproduct%2Fb%2Fa%2Fballpen_with_stylus1.jpg&d=2019-04-16T13%3A15%3A46.063Z" originalsrc="http://......./pub/media/catalog/product/b/a/ballpen_with_stylus1.jpg" data-connectorsauthtoken="1" data-imageproxyendpoint="/actions/ei" data-imageproxyid="" class="x_product-image-photo" width="200" height="200" alt="Stylus Pen" style="border:0; height:auto; line-height:100%; outline:none; text-decoration:none">
– SUBBULAKSHMI G
2 days ago
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "479"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f270341%2fexternal-image-details-getting-added-in-order-email-template-in-magento-2%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
copy vendor/magento/module-sales/view/frontend/templates/email/items/order/default.phtml
to yout template folder app/design/frontend/[VENDOR]/[TEMPLATE]/Magento_Sales/templates/email/items/order/default.phtml
and adding the image column there...
$_item = $block->getItem();
$_order = $_item->getOrder();
$_store = $_order->getStore();
$_imageHelper = MagentoFrameworkAppObjectManager::getInstance()->get('MagentoCatalogHelperImage');
$_baseImageUrl = $_store->getBaseUrl(MagentoFrameworkUrlInterface::URL_TYPE_MEDIA).'catalog/product';
and right below
<img src="<?= $_imageHelper->init($_item->getProduct(), 'small_image', ['type'=>'small_image'])->keepAspectRatio(true)->resize('65','65')->getUrl();?>" alt="<?= __('Product Image');?>">
i have tried .. i am getting same issue
– SUBBULAKSHMI G
2 days ago
any error generate ?
– Rk Rathod
2 days ago
no error........... i am getting below one while inspecting in mail.........<img data-imagetype="External" src="/actions/ei?u=http%3A%2F%2F...%3A1080%2FQPwebstore%2Fpub%2Fmedia%2Fcatalog%2Fproduct%2Fb%2Fa%2Fballpen_with_stylus1.jpg&d=2019-04-16T13%3A15%3A46.063Z" originalsrc="http://......./pub/media/catalog/product/b/a/ballpen_with_stylus1.jpg" data-connectorsauthtoken="1" data-imageproxyendpoint="/actions/ei" data-imageproxyid="" class="x_product-image-photo" width="200" height="200" alt="Stylus Pen" style="border:0; height:auto; line-height:100%; outline:none; text-decoration:none">
– SUBBULAKSHMI G
2 days ago
add a comment |
copy vendor/magento/module-sales/view/frontend/templates/email/items/order/default.phtml
to yout template folder app/design/frontend/[VENDOR]/[TEMPLATE]/Magento_Sales/templates/email/items/order/default.phtml
and adding the image column there...
$_item = $block->getItem();
$_order = $_item->getOrder();
$_store = $_order->getStore();
$_imageHelper = MagentoFrameworkAppObjectManager::getInstance()->get('MagentoCatalogHelperImage');
$_baseImageUrl = $_store->getBaseUrl(MagentoFrameworkUrlInterface::URL_TYPE_MEDIA).'catalog/product';
and right below
<img src="<?= $_imageHelper->init($_item->getProduct(), 'small_image', ['type'=>'small_image'])->keepAspectRatio(true)->resize('65','65')->getUrl();?>" alt="<?= __('Product Image');?>">
i have tried .. i am getting same issue
– SUBBULAKSHMI G
2 days ago
any error generate ?
– Rk Rathod
2 days ago
no error........... i am getting below one while inspecting in mail.........<img data-imagetype="External" src="/actions/ei?u=http%3A%2F%2F...%3A1080%2FQPwebstore%2Fpub%2Fmedia%2Fcatalog%2Fproduct%2Fb%2Fa%2Fballpen_with_stylus1.jpg&d=2019-04-16T13%3A15%3A46.063Z" originalsrc="http://......./pub/media/catalog/product/b/a/ballpen_with_stylus1.jpg" data-connectorsauthtoken="1" data-imageproxyendpoint="/actions/ei" data-imageproxyid="" class="x_product-image-photo" width="200" height="200" alt="Stylus Pen" style="border:0; height:auto; line-height:100%; outline:none; text-decoration:none">
– SUBBULAKSHMI G
2 days ago
add a comment |
copy vendor/magento/module-sales/view/frontend/templates/email/items/order/default.phtml
to yout template folder app/design/frontend/[VENDOR]/[TEMPLATE]/Magento_Sales/templates/email/items/order/default.phtml
and adding the image column there...
$_item = $block->getItem();
$_order = $_item->getOrder();
$_store = $_order->getStore();
$_imageHelper = MagentoFrameworkAppObjectManager::getInstance()->get('MagentoCatalogHelperImage');
$_baseImageUrl = $_store->getBaseUrl(MagentoFrameworkUrlInterface::URL_TYPE_MEDIA).'catalog/product';
and right below
<img src="<?= $_imageHelper->init($_item->getProduct(), 'small_image', ['type'=>'small_image'])->keepAspectRatio(true)->resize('65','65')->getUrl();?>" alt="<?= __('Product Image');?>">
copy vendor/magento/module-sales/view/frontend/templates/email/items/order/default.phtml
to yout template folder app/design/frontend/[VENDOR]/[TEMPLATE]/Magento_Sales/templates/email/items/order/default.phtml
and adding the image column there...
$_item = $block->getItem();
$_order = $_item->getOrder();
$_store = $_order->getStore();
$_imageHelper = MagentoFrameworkAppObjectManager::getInstance()->get('MagentoCatalogHelperImage');
$_baseImageUrl = $_store->getBaseUrl(MagentoFrameworkUrlInterface::URL_TYPE_MEDIA).'catalog/product';
and right below
<img src="<?= $_imageHelper->init($_item->getProduct(), 'small_image', ['type'=>'small_image'])->keepAspectRatio(true)->resize('65','65')->getUrl();?>" alt="<?= __('Product Image');?>">
answered 2 days ago
Rk RathodRk Rathod
1,459214
1,459214
i have tried .. i am getting same issue
– SUBBULAKSHMI G
2 days ago
any error generate ?
– Rk Rathod
2 days ago
no error........... i am getting below one while inspecting in mail.........<img data-imagetype="External" src="/actions/ei?u=http%3A%2F%2F...%3A1080%2FQPwebstore%2Fpub%2Fmedia%2Fcatalog%2Fproduct%2Fb%2Fa%2Fballpen_with_stylus1.jpg&d=2019-04-16T13%3A15%3A46.063Z" originalsrc="http://......./pub/media/catalog/product/b/a/ballpen_with_stylus1.jpg" data-connectorsauthtoken="1" data-imageproxyendpoint="/actions/ei" data-imageproxyid="" class="x_product-image-photo" width="200" height="200" alt="Stylus Pen" style="border:0; height:auto; line-height:100%; outline:none; text-decoration:none">
– SUBBULAKSHMI G
2 days ago
add a comment |
i have tried .. i am getting same issue
– SUBBULAKSHMI G
2 days ago
any error generate ?
– Rk Rathod
2 days ago
no error........... i am getting below one while inspecting in mail.........<img data-imagetype="External" src="/actions/ei?u=http%3A%2F%2F...%3A1080%2FQPwebstore%2Fpub%2Fmedia%2Fcatalog%2Fproduct%2Fb%2Fa%2Fballpen_with_stylus1.jpg&d=2019-04-16T13%3A15%3A46.063Z" originalsrc="http://......./pub/media/catalog/product/b/a/ballpen_with_stylus1.jpg" data-connectorsauthtoken="1" data-imageproxyendpoint="/actions/ei" data-imageproxyid="" class="x_product-image-photo" width="200" height="200" alt="Stylus Pen" style="border:0; height:auto; line-height:100%; outline:none; text-decoration:none">
– SUBBULAKSHMI G
2 days ago
i have tried .. i am getting same issue
– SUBBULAKSHMI G
2 days ago
i have tried .. i am getting same issue
– SUBBULAKSHMI G
2 days ago
any error generate ?
– Rk Rathod
2 days ago
any error generate ?
– Rk Rathod
2 days ago
no error........... i am getting below one while inspecting in mail.........<img data-imagetype="External" src="/actions/ei?u=http%3A%2F%2F...%3A1080%2FQPwebstore%2Fpub%2Fmedia%2Fcatalog%2Fproduct%2Fb%2Fa%2Fballpen_with_stylus1.jpg&d=2019-04-16T13%3A15%3A46.063Z" originalsrc="http://......./pub/media/catalog/product/b/a/ballpen_with_stylus1.jpg" data-connectorsauthtoken="1" data-imageproxyendpoint="/actions/ei" data-imageproxyid="" class="x_product-image-photo" width="200" height="200" alt="Stylus Pen" style="border:0; height:auto; line-height:100%; outline:none; text-decoration:none">
– SUBBULAKSHMI G
2 days ago
no error........... i am getting below one while inspecting in mail.........<img data-imagetype="External" src="/actions/ei?u=http%3A%2F%2F...%3A1080%2FQPwebstore%2Fpub%2Fmedia%2Fcatalog%2Fproduct%2Fb%2Fa%2Fballpen_with_stylus1.jpg&d=2019-04-16T13%3A15%3A46.063Z" originalsrc="http://......./pub/media/catalog/product/b/a/ballpen_with_stylus1.jpg" data-connectorsauthtoken="1" data-imageproxyendpoint="/actions/ei" data-imageproxyid="" class="x_product-image-photo" width="200" height="200" alt="Stylus Pen" style="border:0; height:auto; line-height:100%; outline:none; text-decoration:none">
– SUBBULAKSHMI G
2 days ago
add a comment |
Thanks for contributing an answer to Magento Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f270341%2fexternal-image-details-getting-added-in-order-email-template-in-magento-2%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
<img data-imagetype="External" src="/actions/ei?u=http%3A%2F%2F...%3A1080%2FQPwebstore%2Fpub%2Fmedia%2Fcatalog%2Fproduct%2Fb%2Fa%2Fballpen_with_stylus1.jpg&d=2019-04-16T13%3A15%3A46.063Z" originalsrc="http://......./pub/media/catalog/product/b/a/ballpen_with_stylus1.jpg" data-connectorsauthtoken="1" data-imageproxyendpoint="/actions/ei" data-imageproxyid="" class="x_product-image-photo" width="200" height="200" alt="Stylus Pen" style="border:0; height:auto; line-height:100%; outline:none; text-decoration:none"> ..........this is the element while inspecting
– SUBBULAKSHMI G
2 days ago