Subversion Repositories wpShopGermany4

Rev

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