2484 |
david |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
/**
|
|
|
4 |
* Diese Mail wird an den Kunden geschickt, wenn er die Registrierung erfolgreich beendet hat
|
|
|
5 |
*/
|
|
|
6 |
|
7237 |
thomas |
7 |
$arPflicht = $this->loadPflichtFeldDaten();
|
|
|
8 |
$arTitle = explode('|', $arPflicht['anrede_auswahl']);
|
|
|
9 |
|
|
|
10 |
?><?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']); ?>
|
2484 |
david |
11 |
|
7237 |
thomas |
12 |
|
2484 |
david |
13 |
<?php echo __('Sie haben sich mit folgenden Daten bei uns registriert.', 'wpsg'); ?>
|
|
|
14 |
<?php echo '--------------------------------------------------------------------' ?>
|
|
|
15 |
<?php echo wpsg_translate(__('Firma: #1#', 'wpsg'), $this->view['kunde']['firma']); ?>
|
|
|
16 |
<?php echo wpsg_translate(__('Vorname: #1#', 'wpsg'), $this->view['kunde']['vname']); ?>
|
|
|
17 |
<?php echo wpsg_translate(__('Name: #1#', 'wpsg'), $this->view['kunde']['name']); ?>
|
|
|
18 |
<?php echo wpsg_translate(__('E-Mail: #1#', 'wpsg'), $this->view['kunde']['email']); ?>
|
|
|
19 |
<?php echo wpsg_translate(__('Telefon: #1#', 'wpsg'), $this->view['kunde']['tel']); ?>
|
|
|
20 |
<?php echo wpsg_translate(__('Fax: #1#', 'wpsg'), $this->view['kunde']['fax']); ?>
|
7247 |
daniel |
21 |
<?php echo wpsg_translate(__('Straße: #1#', 'wpsg'), $this->view['kunde']['strasse'].rtrim(' '.$this->view['kunde']['nr'])); ?>
|
2484 |
david |
22 |
<?php echo wpsg_translate(__('PLZ: #1#', 'wpsg'), $this->view['kunde']['plz']); ?>
|
|
|
23 |
<?php echo wpsg_translate(__('Ort: #1#', 'wpsg'), $this->view['kunde']['ort']); ?>
|
|
|
24 |
<?php echo wpsg_translate(__('Land: #1#', 'wpsg'), $this->view['kunde']['land']); ?>
|
|
|
25 |
<?php echo wpsg_translate(__('UStIdNr.: #1#', 'wpsg'), $this->view['kunde']['ustidnr']); ?>
|
|
|
26 |
<?php echo '--------------------------------------------------------------------' ?>
|
|
|
27 |
|
|
|
28 |
<?php echo __('Viele Grüße', 'wpsg'); ?>
|
|
|
29 |
|
3659 |
daniel |
30 |
<?php echo __($this->get_option('wpsg_shopdata_name'), 'wpsg'); ?> - <?php echo __('Team', 'wpsg'); ?>
|