Subversion Repositories wpShopGermany4

Rev

Rev 5261 | Rev 7561 | 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
 
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
 
5216 daniel 18
<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 19
 
3648 daniel 20
<?php $this->render(WPSG_PATH_VIEW.'/mailtemplates/html/order.phtml'); ?>
21
 
22
<?php $this->callMods('mail_aftercalculation', array(&$this->view['basket']['checkout']['o_id'])); ?>
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 } ?>