PPUH Dariusz Malec
ul. Królowej Jadwigi 13e
78-200 Białogard
tel. (094) 312 24 76
tel./fax (094) 312 24 77
e-mail: malec@partner.net.pl
www.malec.biz
$op=$_GET['op'];
$email=$_POST['email'];
$temat=$_POST['temat'];
$tresc=$_POST['tresc'];
$imie=$_POST['imie'];
if ($imie=='' && $op=='ok') {print "Imię/Nazwisko jest wymagane ";}
if ($email=='' && $op=='ok') {print "Email lub telefon jest wymagany ";}
if ($temat=='' && $op=='ok') {print "Pole temat musi być uzupełnione ";}
if ($tresc=='' && $op=='ok') {print "Pole zapytanie musi być uzupełnione ";}
if ($op=='ok' && $email!='' && $tresc!='' && $temat!='')
{
$fromname="$email";
$toname="dudi20@o2.pl"; //adres mailowy na ktry wysyla fomularz
$toaddress="dudi20@o2.pl"; //adres mailowy na ktry wysyla fomularz
$fromaddress="$email";
$subject="$temat";
$message="
$tresc
$imie
";
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text; charset=iso-8859-2\r\n";
$headers .= "From: \"".$fromname."\" <".$fromaddress.">\r\n";
mail($toaddress, $subject, $message, $headers);
print "Wiadomość została wysłana ";
$temat="";
$tresc="";
$email="";
}
print " ";
//}
?>
|