Subversion Repositories wpShopGermany4

Rev

Rev 6595 | 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;
6595 hartmut 8
	date_default_timezone_set('Europe/Berlin');
4317 daniel 9
	$time = time();
10
 
11
?>
12
<p><?php echo __('Hallo Administrator', 'wpsg'); ?>,</p>
13
<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>
14
 
15
<h2><?php echo __('Produktdaten', 'wpsg'); ?>:</h2>
16
<?php echo $this->render(WPSG_PATH_VIEW.'/mods/mod_request/requestmail_html.phtml'); ?>
17
 
18
<h2><?php echo __('Weitere Informationen', 'wpsg'); ?>:</h2>
19
<p>
7012 daniel 20
	<strong><?php echo __('REMOTE IP', 'wpsg'); ?>:</strong>&nbsp;<?php echo wpsg_pad_left(wpsg_anonymip($_SERVER['REMOTE_ADDR']), 46); ?><br />
4317 daniel 21
	<strong><?php echo __('UserAgent', 'wpsg'); ?>:</strong>&nbsp;<?php echo wpsg_getStr($_SERVER['HTTP_USER_AGENT']); ?>
22
</p>