Rev 6595 | Blame | Compare with Previous | Last modification | View Log | RSS feed
<?php
/**
* HTML E-Mail Template für die Admin Mail bei einer neuen Anfrage
*/
$this->htmlMail = true;
date_default_timezone_set('Europe/Berlin');
$time = time();
?>
<p><?php echo __('Hallo Administrator', 'wpsg'); ?>,</p>
<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>
<h2><?php echo __('Produktdaten', 'wpsg'); ?>:</h2>
<?php echo $this->render(WPSG_PATH_VIEW.'/mods/mod_request/requestmail_html.phtml'); ?>
<h2><?php echo __('Weitere Informationen', 'wpsg'); ?>:</h2>
<p>
<strong><?php echo __('REMOTE IP', 'wpsg'); ?>:</strong> <?php echo wpsg_pad_left(wpsg_anonymip($_SERVER['REMOTE_ADDR']), 46); ?><br />
<strong><?php echo __('UserAgent', 'wpsg'); ?>:</strong> <?php echo wpsg_getStr($_SERVER['HTTP_USER_AGENT']); ?>
</p>