Subversion Repositories wpShopGermany4

Rev

Rev 5824 | Rev 7096 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
5824 thomas 1
<?php
2
 
3
	/**
4
	 * Dieses Template wird für die HTML Mail beim Erreichen des Mindestlagerbestandes eines Produktes verwendet
5
	 */
6
 
7
	$this->htmlMail = true;
8
 
9
?>
10
 
6335 hartmut 11
<p><?php echo __('Hallo Administrator,', 'wpsg'); ?></p>
5824 thomas 12
 
13
<p><?php echo wpsg_translate(__('Ein Produkt hat das Erreichen des minimalen Lagerbestand am #1# um #2# Uhr gemeldet', 'wpsg'), date('d.m.Y'), date('H:i')); ?></p>
14
 
6335 hartmut 15
<?php
16
echo ('<br />');
17
foreach ((array)$this->basket->arProdukte as $p)
18
	$id = $p['id'];
19
	echo ('<br />');
20
	echo __('Produkt').' : '.$p['id'].'  '.$p['name'];
21
?>
22
 
5824 thomas 23
<p><?php echo __('Mit freundlichen Grüßen', 'wpsg'); ?></p>
24
 
6335 hartmut 25
<p><?php echo __($this->get_option('wpsg_shopdata_name'), 'wpsg'); ?> - <?php echo __('Team', 'wpsg'); ?></p>