<?php header("Content-Type: text/html; charset=utf-8");
if(isset($_POST['submit'])){
$to = "super.kiriks@yandex.ru";; // Здесь нужно написать e-mail, куда будут приходить письма
$from = $_POST['email']; // this is the sender's Email address
$first_name = $_POST['first_name'];
$subject = "Форма отправки сообщений с сайта";
$subject2 = "Copy of your form submission";
$message = $first_name . " оставил сообщение:" . "\n\n" . $_POST['message'];
$message2 = "Here is a copy of your message " . $first_name . "\n\n" . $_POST['message'];
$headers = "From:" . $from;
$headers2 = "From:" . $to;
mail($to,$subject,$message,$headers);
// mail($from,$subject2,$message2,$headers2); // sends a copy of the message to the sender - Отключено!
echo "Сообщение отправлено. Спасибо Вам " . $first_name . ", мы скоро свяжемся с Вами.";
echo "<br /><br /><a href='http://localhost/Ignatjev/Index.php'>Вернуться на сайт.</a>";
}
?>
<!--Переадресация на главную страницу сайта, через 3 секунды-->
<script language="JavaScript" type="text/javascript">
function changeurl(){eval(self.location="http://localhost/Ignatjev/Index.php");}
window.setTimeout("changeurl();",3000);
</script>
<html>
<head>
<form action="test.php" method="POST">
<title>ТСЖ "Пробуждение"</title>
<link rel="stylesheet" href='\Ignatjev\style.css' type="text/css" />
</head>
<h1><p align = "middle">Передайте показания</h1></p>
<p>Используя данную форму, Вы можете отправить нам текущие показания своих счетчиков.</p>
<body>
<form action="test.php" method="POST">
<p>ФИО отправителя (обязательно)<br />
<input type="text" name="your_name" value="" size="40" class="wpcf7-form-control wpcf7-text wpcf7-validates-as-required" aria-required="true" aria-invalid="false" /></span> </p>
<p>Контактный телефон (обязательно)<br />
<input type="tel" name="contactnumber" value="" size="40" class="wpcf7-form-control wpcf7-text wpcf7-tel wpcf7-validates-as-required wpcf7-validates-as-tel" aria-required="true" aria-invalid="false" /></span> </p>
<p>Номер квартиры (обязательно)<br />
<input type="text" name="apartment" value="" size="40" class="wpcf7-form-control wpcf7-text wpcf7-validates-as-required" aria-required="true" aria-invalid="false" /></span> </p>
<p>Холодная вода<br />
<input type="text" name="coldwater" value="" size="40" class="wpcf7-form-control wpcf7-text" aria-invalid="false" /></span> </p>
<p>Горячая вода<br />
<input type="text" name="hotwater" value="" size="40" class="wpcf7-form-control wpcf7-text" aria-invalid="false" /></span> </p>
<p>Электричество<br />
<input type="text" name="electricity" value="" size="40" class="wpcf7-form-control wpcf7-text" aria-invalid="false" /></span> </p>
<p>Газ<br />
<input type="text" name="gas" value="" size="40" class="wpcf7-form-control wpcf7-text" aria-invalid="false" /></span> </p>
<p>Отопление<br />
<input type="text" name="heating" value="" size="40" class="wpcf7-form-control wpcf7-text" aria-invalid="false" /></span> </p>
<p><input type="submit" value="Отправить" class="wpcf7-form-control wpcf7-submit" /></p>
</form>
<?php
$to = "lirik64@rambler.ru";
$subject = 'pokazania';
$your_name = htmlspecialchars($_POST['your_name']);
$contactnumber = htmlspecialchars($_POST['contactnumber']);
$apartment = htmlspecialchars($_POST['apartment']);
$coldwater = htmlspecialchars($_POST['coldwater']);
$hotwater = htmlspecialchars($_POST['hotwater']);
$electricity = htmlspecialchars($_POST['electricity']);
$gas = htmlspecialchars($_POST['gas']);
$heating = htmlspecialchars($_POST['heating']);
mail($to,$subject,$your_name);
?>
<script language="JavaScript" type="text/javascript">
function changeurl(){eval(self.location="http://localhost/Ignatjev/Index.php");}
window.setTimeout("changeurl();",3000);
</script>