Jump to content
  • 0

нужна помощь со скриптом формы обратной связи


itspider
 Share

Question

На сайте есть форма обратной связи

<form id="contact-form" action="post.php" method="post" enctype="multipart/form-data">

<fieldset>

<label><span class="text-form">Имя:</span><input name="name" type="text" /></label>

<label><span class="text-form">Email:</span><input name="email" type="text" /></label>

<label><span class="text-form">Телефон:</span><input name="tel" type="text" /></label>

<div class="wrapper"><div class="text-form">Сообщение:</div><textarea></textarea></div>

<div class="buttons">

<a class="button" href="#" onclick="document.getElementById('contact-form').reset()">Очистить</a>

<a class="button" href="#" onclick="document.getElementById('contact-form').submit()">Отправить</a>

</div>

</fieldset>

</form>

И скрипт отправки почты

<?php

$name = $_POST['name'];

if (empty($name))

{

echo "<script> alert('Не указано имя!'); document.location.href='http://страница сайта с формой ОС'; </script>";

exit;

}

else

{

$name = "не указано";

}

$email = $_POST['email'];

if (empty($email))

{

echo "<script> alert('Не указан E-Mail!'); document.location.href='http://страница сайта с формой ОС'; </script>";

exit;

}

else

{

$email = "не указано";

}

$tel = $_POST['tel'];

if (empty($tel))

{

echo "<script> alert('Не указан номер телефона'); document.location.href='http://страница сайта с формой ОС'; </script>";

exit;

}

else

{

$tel = "не указано";

}

$sub = $_POST['sub'];

$mess = $_POST['mess'];

if (empty($mess))

{

echo "<script> alert('Не указано сообщение!'); document.location.href='http://страница сайта с формой ОС'; </script>";

exit;

}

else

{

$mess = "не указано";

}

$address = "здесь моя почта";

$sub = "с сайта ";

$mes = "Имя: $name \nE-mail: $email \nТелефон: $tel \nТема: $sub \nСообщение: $mess";

$verify = mail ($address,$sub,$mes,"Content-type:text/plain; charset = utf-8\r\nFrom:$email");

if ($verify == 'true')

{

echo "Сообщение отправлено";

}

else

{

echo "Сообщение не отправлено";

}

header('location: http://страница сайт...мой ОС');//

?>

Не могу разобраться почему не уходят письма с сайта.

Если есть мысли прошу поделится.

Сам я в программировании не очень разбираюсь.

  • 0

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy