/******************************************************* E-MAIL CHECK *******************************************************/ function IsEmailSyntaxValid($addr){ list($local, $domain) = explode("@", $addr); $pattern_local = '^([0-9a-z]*([-|_]?[0-9a-z]+)*)(([-|_]?)\.([-|_]?)[0-9a-z]*([-|_]?[0-9a-z]+)+)*([-|_]?)$'; $pattern_domain = '^([0-9a-z]+([-]?[0-9a-z]+)*)(([-]?)\.([-]?)[0-9a-z]*([-]?[0-9a-z]+)+)*\.[a-z]{2,4}$'; $match_local = eregi($pattern_local, $local); $match_domain = eregi($pattern_domain, $domain); if ($match_local && $match_domain) return 1; else return 0; } function EmailHeader($value){ //Remove line feeds $ret = str_replace("\r", "", $value); $ret = str_replace("\n", "", $ret); // Remove injected headers $find = array("/bcc\:/i", "/Content\-Type\:/i", "/Mime\-Type\:/i", "/cc\:/i", "/to\:/i"); $ret = preg_replace($find, "**bogus header removed**", $ret); return $ret; } if($_POST['submit']){ if(!IsEmailSyntaxValid($_POST['email'])){ $emailfout = $fout; $error = 1; } if($_POST['bedrijf'] == ""){ $bedrijffout = $fout; $error = 1; } if($_POST['naam'] == ""){ $naamfout = $fout; $error = 1; } if($_POST['telefoon'] == ""){ $telefoonfout = $fout; $error = 1; } if(!$error){ //print('test'); require_once('../includes/htmlemail/htmlMimeMail.php'); $mail = new htmlMimeMail(); $bedrijfsnaam = htmlentities($_POST['bedrijf'],ENT_QUOTES); $aanhef = $_POST['aanhef']; $naam = htmlentities($_POST['naam']); $telefoon = htmlentities($_POST['telefoon']); $email = $_POST['email']; $folder = htmlentities($_POST['folder']); $adres = htmlentities($_POST['adres']); $postcode = htmlentities($_POST['postcode']); $plaats = htmlentities($_POST['plaats']); $opmerking = htmlentities($_POST['opmerking']); $body = '
Bedrijfsnaam | '.$bedrijfsnaam.' |
Contactpersoon | '.$aanhef.' '.$naam.' |
Telefoonnnummer | '.$telefoon.' |
E-mail adres | '.$email.' |
Folder ontvangen? | '.$folder.' |
Adres | '.$adres.' |
Postcode/plaats | '.$postcode.', '.$plaats.' |
Opmerking | '.$opmerking.' |
|
Kontakt aufnemen mit Matcon/Arotech Möchten Sie weitere Information erhalten über den Rotoraptor? Bitte füllen Sie unsterstehendes Formular aus: |
|||
Bellweg 25 • 6101 XA Echt • Tel. 0475-600119 • Fax 0475-600424 • E-mail: info@arotech.nl |