Subversion Repositories wpShopGermany4

Rev

Rev 4943 | Rev 6595 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
4313 daniel 1
<?php
2
 
3
	/**
4
	 * HTML E-Mail Template für die Admin Mail bei einer neuen Anfrage
5
	 */
6
 
4317 daniel 7
	$this->htmlMail = true;
8
	$time = time();
9
 
10
?>
11
<p><?php echo __('Hallo Administrator', 'wpsg'); ?>,</p>
12
<p><?php echo wpsg_translate(__('Das Anfrageformular auf der Homepage wurde am #1# um #2# Uhr', 'wpsg'), date('d.m.Y', $time), date('H:i', $time)); ?></p>
13
 
14
<h2><?php echo __('Produktdaten', 'wpsg'); ?>:</h2>
15
<?php echo $this->render(WPSG_PATH_VIEW.'/mods/mod_request/requestmail_html.phtml'); ?>
16
 
17
<h2><?php echo __('Weitere Informationen', 'wpsg'); ?>:</h2>
18
<p>
19
	<strong><?php echo __('REMOTE IP', 'wpsg'); ?>:</strong>&nbsp;<?php echo wpsg_pad_left($_SERVER['REMOTE_ADDR'], 46); ?><br />
20
	<strong><?php echo __('UserAgent', 'wpsg'); ?>:</strong>&nbsp;<?php echo wpsg_getStr($_SERVER['HTTP_USER_AGENT']); ?>
21
</p>