Subversion Repositories wpShopGermany4

Rev

Rev 7561 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
3648 daniel 1
<?php
2
 
3
	/* Wichtig, da die Module sonst kein HTML zurückgeben */
4
	$this->htmlMail = true;
5
 
7094 florian 6
	include(WPSG_PATH_VIEW . 'mailtemplates/html/logo.phtml');
7
 
3649 daniel 8
?>
3648 daniel 9
 
3683 daniel 10
<p><?php echo __('Hallo Administrator,', 'wpsg'); ?></p>
3648 daniel 11
 
3684 daniel 12
<p><?php echo __('Eine neue Bestellung ist im Online-Shop eingegangen!', 'wpsg'); ?></p>
3648 daniel 13
 
14
<?php $this->render(WPSG_PATH_VIEW.'/mailtemplates/html/customer.phtml'); ?>
15
 
3679 daniel 16
<br />
17
 
7561 daniel 18
<h2><?php echo __('Warenkorb', 'wpsg'); ?>:</h2>
3757 daniel 19
 
3648 daniel 20
<?php $this->render(WPSG_PATH_VIEW.'/mailtemplates/html/order.phtml'); ?>
21
 
7867 daniel 22
<?php $this->callMods('mail_aftercalculation', array(&$this->view['order']['id'])); ?>
3648 daniel 23
 
24
<?php if (wpsg_isSizedString($this->view['basket']['checkout']['comment'])) { ?>
25
<h2><?php echo __('Bestellkommentar', 'wpsg') ?></h2>
26
<p><?php echo $this->view['basket']['checkout']['comment'] ?></p>
3649 daniel 27
<?php } ?>