Contact
Tameso Erste
Geschäftsführungs GmbH
Schwatlostraße 12
12207 Berlin
Germany
Phone/Fax: +49 (0) 30/81099970/67
"Please calculate 1 plus 1.", "3" => "Please calculate 1 plus 2.", "4" => "Please calculate 3 plus 1.", "5" => "What is the sum of 2 and 3?", "6" => "Please calculate 2 plus 4.", "7" => "Please calculate 2 plus 5.", "8" => "Please calculate 2 plus 6.", "9" => "What is the sum of 5 and 4?", "10" => "What is the sum of 7 and 3?", "11" => "Please calculate 8 plus 3.", "12" => "Please calculate 9 plus 3.", "13" => "What is the sum of 8 and 5?", "14" => "What is the sum of 8 and 6?", "15" => "Please calculate 6 plus 9.", "16" => "Please calculate 6 plus 10.", "17" => "Please calculate 8 plus 9.", "18" => "Please add 9 and 9."); if ( !empty($_POST) ) { $errors = array(); if ( $_POST['Name'] == "" ) $errors['name'] = "Please enter your name."; if ( $_POST['E-Mail-Adresse'] == "" ) $errors['mail'] = "Please enter your E-mail."; elseif ( !preg_match( '/@+./', $_POST['E-Mail-Adresse'] ) ) $errors['mail'] = "Your E-mail *is invalid"; if ( $_POST['Nachricht'] == "" ) $errors['message'] = "Please enter your message."; if ( $_POST['c11ae54dd9bfcccd206516398bcff60ef'] != $_SESSION['captcha'] ) $errors['captcha'] = "Please enter the correct code."; if ( empty($errors) ) { $betreff = "Kontaktanfrage von tameso.de"; $text = "Sehr geehrte Damen and Herren,\n\n"; $text .= "auf der Webseite \"tameso.de\" hat ein Besucher das englische Kontaktformular ausgefüllt and abgesendet.\n"; $text .= "Folgende Daten wurden eingegeben:\n\n"; foreach ( $_POST as $key => $value ) $text .= $key . ": " . htmlspecialchars($value) . "\n"; $text .= "\nBeste Grüße\n\n"; $text .= "Ihr Entwickler-Team"; $header = "From: info@tameso.de\n"; $header .= "Reply-To: " . $_POST['E-Mail-Adresse'] . "\n"; $header .= "MIME-Version: 1.0\n"; $header .= "Content-Type: text/plain; charset=ISO-8859-1\n"; mail("info@tameso.de", $betreff, utf8_decode($text), $header); //mail("andre.nispel@datenweberei.de", $betreff, utf8_decode($text), $header); header("Location: contact_thanks.html"); } } $_SESSION['captcha'] = rand(2,18); ?>