<?php
$MailTo="info@adstudios.de";
$inhalt = "ALLGEMEIN:\n\nTitel: $anrede\nNachname: $nname\nVorname: $vname\n\nStrasse: $strasse\nPLZ/Ort: $plz $ort\n\nTelefon: $tel\nFAX: $fax\n\nE-Mail: $email\nInternetadresse: $web\n\n";
$inhalt .= "Die Seite kenne ich über:\n";
$inhalt .= "$aufm\n";
$inhalt .= "\n\n\n";
$inhalt .= "ZUSÄTZLICHE ANGABEN:\n\n";
if ($priv) {
$inhalt .= "- Ich bin privater Interessent\n";
}
if ($gewerb) {
$inhalt .= "- Ich bin gwerbliche Interessent\n";
}
if ($priv_gewerb) {
$inhalt .= "- Ich bin sowohl privat als auch gewerblich interessiert.\n";
}
$inhalt .= "\n";
$inhalt .= "Unternehmen: $firma\nFunktion: $funktion\n";
$inhalt .= "\n";
$inhalt .= "Erbitte Rückruf zwecks:\n";
if ($ig) {
$inhalt .= "- Informationsgespräch\n";
}
if ($ba) {
$inhalt .= "- Beratung und/oder Analyse\n";
}
if ($bt) {
$inhalt .= "- Beratung und Termin bei Ihnen im Hause\n";
}
if ($bto) {
$inhalt .= "- Beratung und Termin vor Ort\n";
}
if ($si) {
$inhalt .= "- Spezielle Informationen\n";
}
$inhalt .= "\n";
if ($im) {
$inhalt .= "- Bitte senden Sie mir Informationsmaterial zu.";
}
$inhalt .= "\n\n";
$inhalt .= "Persönliche Nachricht:\n$nachricht";
mail($MailTo, "Kontaktformular Internet", $inhalt, "From: $email");
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>