Subversion Repositories wpShopGermany4

Rev

Rev 7094 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7094 Rev 7681
Line 1... Line 1...
1
<?php 
1
<?php 
2
 
2
 
3
	/* Wichtig, da die Module sonst kein HTML zurückgeben */
3
	/* Wichtig, da die Module sonst kein HTML zurückgeben */
4
	$this->htmlMail = true;
4
	$this->htmlMail = true;
5
 
5
 
-
 
6
    $arPflicht = $this->loadPflichtFeldDaten();
-
 
7
    $arTitle = explode('|', $arPflicht['anrede_auswahl']);
-
 
8
 
6
	include(WPSG_PATH_VIEW . 'mailtemplates/html/logo.phtml');
9
	include(WPSG_PATH_VIEW . 'mailtemplates/html/logo.phtml');
7
 
10
 
8
?>
11
?>
9
<p><?php echo wpsg_translate(__('Hallo #1# #2#,', 'wpsg'), $this->view['basket']['checkout']['vname'], $this->view['basket']['checkout']['name']); ?></p>
12
<p><?php echo wpsg_translate(__('Hallo #1# #2# #3#,', 'wpsg'), @$arTitle[$this->view['basket']['checkout']['title']], $this->view['basket']['checkout']['vname'], $this->view['basket']['checkout']['name']); ?></p>
10
 
13
 
11
<p><?php echo __('Vielen Dank für Ihre Bestellung!', 'wpsg'); ?></p>
14
<p><?php echo __('Vielen Dank für Ihre Bestellung!', 'wpsg'); ?></p>
12
 
15
 
13
<?php $this->render(WPSG_PATH_VIEW.'/mailtemplates/html/customer.phtml'); ?>
16
<?php $this->render(WPSG_PATH_VIEW.'/mailtemplates/html/customer.phtml'); ?>
14
 
17