mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-06-28 16:44:24 +00:00
53 lines
1.3 KiB
PHP
53 lines
1.3 KiB
PHP
<?php
|
|
|
|
if($_POST && count($_POST))
|
|
{
|
|
include_once('GameEngine/config.php');
|
|
$strEmpfaenger = (ADMIN_EMAIL ? ADMIN_EMAIL : (PAYPAL_EMAIL ? PAYPAL_EMAIL : 'martin@martinambrus.com'));
|
|
|
|
$strFrom = "From: TravianiX Support <$strEmpfaenger>\n";
|
|
$strFrom .= "X-Sender: <$strEmpfaenger>\n";
|
|
$strFrom .= "X-Mailer: PHP\n";
|
|
$strFrom .= "X-Priority: 3\n";
|
|
$strFrom .= "Errors-To: <$strEmpfaenger>\n";
|
|
$strFrom .= "Return-Path: <$strEmpfaenger>\n";
|
|
$strFrom .= "Reply-To: " . $_POST['Emailadress'] . "\n";
|
|
$strFrom .= "Content-Type: text; charset=iso-8859-15\n";
|
|
|
|
$strSubject = "New Ticket supported";
|
|
|
|
|
|
$strReturnhtml = 'dorf1.php';
|
|
|
|
|
|
$strDelimiter = ":\t";
|
|
|
|
$strMailtext = "";
|
|
|
|
foreach($_POST as $strName => $value)
|
|
{
|
|
if(is_array($value))
|
|
{
|
|
foreach($value as $value_array)
|
|
{
|
|
$strMailtext .= $strName.$strDelimiter.$value_array."\n";
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$strMailtext .= $strName.$strDelimiter.$value."\n";
|
|
}
|
|
}
|
|
|
|
if(function_exists('get_magic_quotes_gpc') && get_magic_quotes_gpc())
|
|
{
|
|
$strMailtext = stripslashes($strMailtext);
|
|
}
|
|
|
|
mail($strEmpfaenger, $strSubject, $strMailtext, $strFrom)
|
|
or die("The mail could not be send. Something get wrong!");
|
|
header("Location: $strReturnhtml");
|
|
exit;
|
|
}
|
|
|
|
?>
|