[insert_php]
if (!function_exists(‘show_error’)){
function show_error($myError)
{
echo $myError;
}
}
if (!function_exists(‘check_input’)){
function check_input($data, $problem=””)
{
$data = trim($data);
$data = stripslashes($data);
$data = htmlspecialchars($data);
if ($problem && strlen($data) == 0)
{
echo $problem.” “;
}
return $data;
}
}
if (!empty($_POST)){
$myemail = “info@imonline.co.il”;
$headers = “MIME-Version: 1.0\r\n”;
$headers .= “Content-type: text/html; charset=UTF-8\r\n”;
$subject = “פניה לרכישת MICROSOFT 365”;
/* Check all form inputs using check_input function */
$yourname = check_input($_POST[‘inputName’], “הזן שם מלא”);
$email = check_input($_POST[‘inputEmail’],”הזן כתובת דואר אלקטרוני”);
$phone = check_input($_POST[‘phone’],”הזן מספר טלפון”);
$comments = $_POST[‘textBox’];
/* If e-mail is not valid show error message
if (!preg_match(“/([\w\-]+\@[\w\-]+\.[\w\-]+)/”, $email))
{
show_error(“כתובת דואר אלקטורני לא תקינה”);
}
*/
if (isset($_POST[‘inputName’]) && isset($_POST[‘inputEmail’]) )
{
/* Let’s prepare the message for the e-mail */
$message = ”
שלום,
התקבלה פניה חדשה מהאתר דרך עמוד צור קשר
שם מלא : $yourname
דואר אלקטרוני : $email
טלפון : $phone
הערות:
$comments
—————-
“;
/* Send the message using mail() function */
if(mail($myemail, $subject, $message,$headers) == 1){
echo(““);
}else{
echo “תקלה בשליחת הטופס”;
}
}else{
}
}
[/insert_php]
ניתן ליצור איתנו קשר במספר דרכים נוספות:
דואר אלקטרוני : info@imonline.co.il
טלפון : 072-2119600
פקס : 072-2119601