Subversion Repositories wpShopGermany4

Rev

Rev 5216 | Rev 7094 | Go to most recent revision | 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
 
3649 daniel 6
?>
3648 daniel 7
 
3683 daniel 8
<p><?php echo __('Hallo Administrator,', 'wpsg'); ?></p>
3648 daniel 9
 
3684 daniel 10
<p><?php echo __('Eine neue Bestellung ist im Online-Shop eingegangen!', 'wpsg'); ?></p>
3648 daniel 11
 
12
<?php $this->render(WPSG_PATH_VIEW.'/mailtemplates/html/customer.phtml'); ?>
13
 
3679 daniel 14
<br />
15
 
5216 daniel 16
<h2><?php echo __('Warenkorb', 'wpsg'); ?> <a href="<?php echo WPSG_URL_WP.'wp-admin/admin.php?page=wpsg-Order&action=view&edit_id='.$this->view['o_id']; ?>"><?php echo __('Bestellverwaltung', 'wpsg'); ?></a>:</h2>
3757 daniel 17
 
3648 daniel 18
<?php $this->render(WPSG_PATH_VIEW.'/mailtemplates/html/order.phtml'); ?>
19
 
20
<?php $this->callMods('mail_aftercalculation', array(&$this->view['basket']['checkout']['o_id'])); ?>
21
 
22
<?php if (wpsg_isSizedString($this->view['basket']['checkout']['comment'])) { ?>
23
<h2><?php echo __('Bestellkommentar', 'wpsg') ?></h2>
24
<p><?php echo $this->view['basket']['checkout']['comment'] ?></p>
3649 daniel 25
<?php } ?>