3649 |
daniel |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
/**
|
|
|
4 |
* Dieses Template wird für die HTML Mail bei einer Statusänderung verwendet
|
|
|
5 |
*/
|
|
|
6 |
|
|
|
7 |
/* Wichtig, da die Module sonst kein HTML zurückgeben */
|
|
|
8 |
$this->htmlMail = true;
|
|
|
9 |
|
7094 |
florian |
10 |
include(WPSG_PATH_VIEW . 'mailtemplates/html/logo.phtml');
|
|
|
11 |
|
3649 |
daniel |
12 |
?>
|
|
|
13 |
<p><?php echo wpsg_translate(__('Hallo #1# #2#,', 'wpsg'), $this->view['kunde']['vname'], $this->view['kunde']['name']); ?></p>
|
|
|
14 |
|
|
|
15 |
<p><?php echo wpsg_translate(
|
|
|
16 |
__('Der Status Ihrer Bestellung mit der Bestellnummer #1# hat sich von "#2#" auf "#3#" geändert.', 'wpsg'),
|
|
|
17 |
$this->view['order']['onr'],
|
|
|
18 |
__($this->view['status_alt'], 'wpsg'),
|
|
|
19 |
__($this->view['status_neu'], 'wpsg')); ?></p>
|
3915 |
daniel |
20 |
|
|
|
21 |
<?php $this->callMods('mail_status', array(&$this->view['order'], &$this->view['kunde'])); ?>
|
3649 |
daniel |
22 |
|
|
|
23 |
<p><?php echo __('Mit freundlichen Grüßen', 'wpsg'); ?></p>
|
|
|
24 |
|
3659 |
daniel |
25 |
<p><?php echo __($this->get_option('wpsg_shopdata_name'), 'wpsg'); ?> - <?php echo __('Team', 'wpsg'); ?></p>
|