Image on Email
Posted: Tue Nov 16, 2010 10:16 am
I would like to remove the Header image and the attached image on the order confirmation email.
How do I remove both?
Thanks,
Mark
How do I remove both?
Thanks,
Mark
OpenCart Community Forum - Discuss shopping cart and e-commerce solutions.
https://forum.opencart.com/
Code: Select all
/catalog/model/checkout/order.php
Code: Select all
$template->data['logo'] = 'cid:' . basename($this->config->get('config_logo'));
Code: Select all
$mail->addAttachment(DIR_IMAGE . $this->config->get('config_logo'));
Code: Select all
/catalog/view/theme/your-theme-name/template/mail/order_confirm.tpl
Code: Select all
<tr>
<td align="left"><a href="<?php echo $store_url; ?>" title="<?php echo $store_name; ?>"><img src="<?php echo $logo; ?>" alt="<?php echo $store_name; ?>" style="border: none;" ></a></td>
</tr>
<tr>
<td> </td>
</tr>