Subversion-Projekte lars-tiefland.content-management

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<html>
2
<head>
3
<title>Form-Mailer</title>
4
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
5
<meta name="author" content="Webagentur Niewerth - www.weban.de">
6
<meta name="revisit-after" content="30 days">
7
<meta name="language" content="deutsch, de">
8
<meta name="distribution" content="global">
9
<meta name="robots" content="all">
10
</head>
11
 
12
<body bgcolor="#FFFFFF" text="#000000">
13
 
14
<?
15
 
16
if ($betreff == "" or $name == "" or  $email == ""  or $nachricht == "")   {
17
?>
18
Bitte füllen Sie alle Felder aus!
19
<?
20
 
21
}
22
else {
23
 
24
if(strstr($HTTP_REFERER, "$HTTP_HOST")) {
25
mail("$empfaenger", "$betreff", "$name, $email:\n\n$nachricht", "$betreff") or die ("Die Mail konnte nicht versendet werden");
26
?>
27
Vielen Dank <? print $name; ?>,<br>Ihre Anfrage wird von uns so schnell wie Möglich bearbeitet.
28
<?
29
}
30
else {
31
?>
32
Fehler:<br>Die Anfrage an dieses Script ist nicht gültig.
33
<?
34
}
35
}
36
?>
37
 
38
</body>
39
</html>