Subversion Repositories wpShopGermany4

Rev

Rev 5261 | Rev 7681 | 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
?>
3682 daniel 9
<p><?php echo wpsg_translate(__('Hallo #1# #2#,', 'wpsg'), $this->view['basket']['checkout']['vname'], $this->view['basket']['checkout']['name']); ?></p>
3648 daniel 10
 
3684 daniel 11
<p><?php echo __('Vielen Dank für Ihre Bestellung!', 'wpsg'); ?></p>
3648 daniel 12
 
13
<?php $this->render(WPSG_PATH_VIEW.'/mailtemplates/html/customer.phtml'); ?>
14
 
3679 daniel 15
<br />
16
 
3757 daniel 17
<h2><?php echo __('Warenkorb', 'wpsg'); ?>:</h2>
18
 
3648 daniel 19
<?php $this->render(WPSG_PATH_VIEW.'/mailtemplates/html/order.phtml'); ?>
20
 
21
<?php $this->callMods('mail_aftercalculation', array(&$this->view['basket']['checkout']['o_id'])); ?>
22
 
23
<?php if (wpsg_isSizedString($this->view['basket']['checkout']['comment'])) { ?>
24
<h2><?php echo __('Bestellkommentar', 'wpsg') ?></h2>
25
<p><?php echo $this->view['basket']['checkout']['comment'] ?></p>
26
<?php } ?>
27
 
28
<p><?php echo __('Wir bedanken uns fuer Ihre Bestellung.', 'wpsg'); ?></p>
29
<p><?php echo __('Bitte beachten Sie, dass es sich bei dieser E-Mail um eine Bestellbestaetigung und keine bindende Auftragsbestaetigung handelt. Preisirrtuemer sind leider nicht vollstaendig auszuschliessen.', 'wpsg'); ?></p>
30
<p><?php echo wpsg_translate(__('Es gelten unsere <a href="#1#">Allgemeinen Geschaeftsbedingungen</a> (<a href="#1#">AGB</a>).', 'wpsg'), $this->getURL(wpsg_ShopController::URL_AGB)); ?></p>
31
 
32
<?php $this->CallMods('kundenmail_afteragb', array(&$this->view['basket']['checkout']['o_id'])); ?>
33
 
34
<h3><?php echo __("Widerrufsbelehrung", "wpsg"); ?></h3>
35
 
36
<?php if (wpsg_isSizedString($this->get_option("wpsg_ps_mailwiderruf"))) { ?>
3884 daniel 37
<p><?php echo nl2br($this->get_option("wpsg_ps_mailwiderruf")); ?></p>
3648 daniel 38
<?php } else { ?>
39
<?php echo __("...hier steht der Text zum Widerrufsrecht...", "wpsg"); ?>
40
<?php } ?>
41
 
42
<h3><?php echo __("Ende der Widerrufsbelehrung", "wpsg"); ?></h3>
43
 
44
<p><?php echo __('Mit freundlichen Grüßen', 'wpsg'); ?></p>
45
 
3659 daniel 46
<p><?php echo __($this->get_option('wpsg_shopdata_name'), 'wpsg'); ?> - <?php echo __('Team', 'wpsg'); ?></p>