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