3648 |
daniel |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
/* Wichtig, da die Module sonst kein HTML zurückgeben */
|
|
|
4 |
$this->htmlMail = true;
|
|
|
5 |
|
|
|
6 |
?><?php $this->render(WPSG_PATH_VIEW.'/mailtemplates/html/html_head.phtml'); ?>
|
|
|
7 |
|
|
|
8 |
<h1><?php echo __("Auftragsbestätigung", "wpsg"); ?></h1>
|
|
|
9 |
|
|
|
10 |
<p><?php echo __("Vielen Dank für Ihre Bestellung. Sie erhalten hiermit die Auftragsbestätigung mit allen wichtigen Informationen zu Ihrer Bestellung.", "wpsg"); ?></p>
|
|
|
11 |
|
|
|
12 |
<?php if (wpsg_isSizedString($this->view['auftrag_note'])) { ?>
|
|
|
13 |
<h2><?php echo __('Kommentar Auftragsbestätigung', 'wpsg'); ?></h2>
|
|
|
14 |
<p><?php echo $this->view['auftrag_note'] ?></p>
|
|
|
15 |
<?php }?>
|
|
|
16 |
|
|
|
17 |
<?php $this->render(WPSG_PATH_VIEW.'/mailtemplates/html/customer.phtml'); ?>
|
|
|
18 |
|
3757 |
daniel |
19 |
<h2><?php echo __('Warenkorb', 'wpsg'); ?>:</h2>
|
|
|
20 |
|
3648 |
daniel |
21 |
<?php $this->render(WPSG_PATH_VIEW.'/mailtemplates/html/order.phtml'); ?>
|
|
|
22 |
|
|
|
23 |
<?php $this->callMods('mail_aftercalculation', array(&$this->view['basket']['checkout']['o_id'])); ?>
|
|
|
24 |
|
|
|
25 |
<?php if (wpsg_isSizedString($this->view['basket']['checkout']['comment'])) { ?>
|
|
|
26 |
<h2><?php echo __('Bestellkommentar', 'wpsg') ?></h2>
|
|
|
27 |
<p><?php echo $this->view['basket']['checkout']['comment'] ?></p>
|
|
|
28 |
<?php } ?>
|
|
|
29 |
|
|
|
30 |
<br />
|
|
|
31 |
|
|
|
32 |
<p><?php echo __('Wir bedanken uns fuer Ihre Bestellung.', 'wpsg'); ?></p>
|
3691 |
daniel |
33 |
|
3648 |
daniel |
34 |
<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>
|
3691 |
daniel |
35 |
|
3648 |
daniel |
36 |
<h3><?php echo __("Widerrufsbelehrung", "wpsg"); ?></h3>
|
|
|
37 |
|
|
|
38 |
<?php if (wpsg_isSizedString($this->get_option("wpsg_ps_mailwiderruf"))) { ?>
|
|
|
39 |
<p><?php echo $this->get_option("wpsg_ps_mailwiderruf"); ?></p>
|
|
|
40 |
<?php } else { ?>
|
|
|
41 |
<?php echo __("...hier steht der Text zum Widerrufsrecht...", "wpsg"); ?>
|
|
|
42 |
<?php } ?>
|
|
|
43 |
|
|
|
44 |
<h3><?php echo __("Ende der Widerrufsbelehrung", "wpsg"); ?></h3>
|
|
|
45 |
|
|
|
46 |
<p><?php echo __('Mit freundlichen Grüßen', 'wpsg'); ?></p>
|
3659 |
daniel |
47 |
<p><?php echo __($this->get_option('wpsg_shopdata_name'), 'wpsg'); ?> - <?php echo __('Team', 'wpsg'); ?></p>
|
3648 |
daniel |
48 |
|
|
|
49 |
<?php $this->render(WPSG_PATH_VIEW.'/mailtemplates/html/html_foot.phtml'); ?>
|
|
|
50 |
|