| Current Path : /home/gotzfrokfn/www/components/com_virtuemart/views/productdetails/tmpl/ |
| Current File : /home/gotzfrokfn/www/components/com_virtuemart/views/productdetails/tmpl/mail_html_notify.php |
<?php
defined('_JEXEC') or die('');
/**
* Renders the email for the shoppers from the waiting list, or who bought this product
* @package VirtueMart
* @subpackage Productdetails
* @author Max Milbers
* @author Valérie Isaksen
* @link https://virtuemart.net
* @copyright Copyright (c) 2004 - 2012 VirtueMart Team. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
* VirtueMart is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* @version $Id: mail_html_notify.php 10649 2022-05-05 14:29:44Z Milbo $
*/
?>
<html>
<head>
<style type="text/css">
body, td, span, p, th { font-size: 11px; }
table.html-email {margin:10px auto;background:#fff;border:solid #dad8d8 1px;}
.html-email tr{border-bottom : 1px solid #eee;}
span.grey {color:#666;}
span.date {color:#666;font-size: 10px;}
a.default:link, a.default:hover, a.default:visited {color:#666;line-height:25px;background: #f2f2f2;margin: 10px ;padding: 3px 8px 1px 8px;border: solid #CAC9C9 1px;border-radius: 4px;-webkit-border-radius: 4px;-moz-border-radius: 4px;text-shadow: 1px 1px 1px #f2f2f2;font-size: 12px;background-position: 0px 0px;display: inline-block;text-decoration: none;}
a.default:hover {color:#888;background: #f8f8f8;}
.cart-summary{ }
.html-email th { background: #ccc;margin: 0px;padding: 10px;}
.sectiontableentry2, .html-email th, .cart-summary th{ background: #ccc;margin: 0px;padding: 10px;}
.sectiontableentry1, .html-email td, .cart-summary td {background: #fff;margin: 0px;padding: 10px;}
</style>
</head>
<body style="background: #F2F2F2;word-wrap: break-word;">
<div style="background-color: #e6e6e6;" width="100%">
<table style="margin: auto;" cellpadding="0" cellspacing="0" ><tr><td>
<table border="0" cellpadding="0" cellspacing="0" class="html-email">
<tr>
<td valign="top">
<img src="<?php echo JURI::root () . $this->vendor->images[0]->file_url ?>" />
</td>
<td>
<?php echo $this->vendorAddress; ?>
</td>
</tr>
<tr>
<td colspan="2">
<strong><?php echo vmText::sprintf ('COM_VIRTUEMART_MAIL_SHOPPER_NAME', $this->vendor->vendor_store_name); ?></strong><br/>
</td>
</tr>
</table>
<table style="margin: auto;" cellpadding="0" cellspacing="0" >
<tr>
<td>
<table width="100%" border="0" cellpadding="0" cellspacing="0" class="html-email">
<tr>
<td >
<?php
if(!empty($this->mailbody)){
echo nl2br($this->mailbody);
} else {
echo vmText::sprintf('COM_VIRTUEMART_CART_NOTIFY_MAIL_HTML', $this->productName,$this->link);
}
?>
</td>
</tr>
</table>
</td>
</tr>
</table>
<?php
$link = JRoute::_ ( 'index.php?option=com_virtuemart',true,-1);
echo '<br/><br/>';
/* GENERAL FOOTER FOR ALL MAILS */
$link = JURI::root().'index.php?option=com_virtuemart';
echo vmText::_('COM_VIRTUEMART_MAIL_FOOTER' ) . '<a href="'.$link.'">'.$this->vendor->vendor_name.'</a>';
echo '<br/>';
echo $this->vendor->vendor_name .'<br />'.$this->vendor->vendor_phone .' '.$this->vendor->vendor_store_name .'<br /> '.$this->vendor->vendor_store_desc.'<br />'.$this->vendor->vendor_legal_info;
?>
</td></tr>
</table>
</div>
</body>
</html>