Kód: Vybrat vše
<?php
$subject ="Poptávka IaM";
$message="$detail, $telefon, $customer_mail";
$thankyou="thankyou.html";
$error="error.html";
$mail_from="$customer_mail";
$header="from: $name <$mail_from>";
$noemail="noemail.html";
$noname="noname.html";
$notel="notel.html";
$nodetails="nodetails.html";
$to ='pabos@centrum.cz';
if($customer_mail == ""){
?>
<meta http-equiv="refresh" content="0; url=<?echo $noemail;?>"">
"<?php
;}elseif($detail == ""){
?>
<meta http-equiv="refresh" content="0; url=<?echo $nodetails;?>"">
"<?php
;}elseif($name == ""){
?>
<meta http-equiv="refresh" content="0; url=<?echo $noname;?>"">
"<?php
;}elseif($telefon == ""){
?>
<meta http-equiv="refresh" content="0; url=<?echo $notel;?>"">
"<?php
;}else{
$send_contact=mail($to,$subject,$message,$header);
?>
<meta http-equiv="refresh" content="0; url=<?echo $thankyou;?>"">
"<?php
}
"?>


