Народ, объясните пожалуйста. Вот это форма отправляет заявку на на почту. Как она ее отправляет. action="mail.php", но в mail.php просто благодарность за отправку. Мне нужна точно такая же, но не могу понять каким образом она отправляет на почту заявку. Спасибо. B каким образом определяются первые два инпута, referer и phrase ? Код формы Код (CODE): <form class="form1" action="mail.php"> <input name="referer" type="hidden" value="Yandex"> <input name="phrase" type="hidden" value="йога в алматы"> <!--form1--> <p style="font-family: 'Conv_DINPro-Regular'; font-size: 24px; line-height: 26px; text-align: center; color: #242b3f;">Заказать звонок</p> <div style="margin: 32px 0 0 48px;" class="name-ico"></div> <input style="margin: none;" type="text" required placeholder="Имя" name="client_name" > <div style="margin: 31px 0 0 48px;" class="phone-ico"></div> <input style="margin: none;" type="text" required placeholder="Телефон" name="client_phone" > <div style="margin: none;" class="button-1"><!--button-1--> <input type="submit" value="заказать"> </div><!--button-1--> <div class="clear"></div> </form><!--form1--> mail.php Код (CODE): <!doctype html> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Заявка с сайта yoga-art.kz</title> </head> <body> <script> window.alert("Сообщение отправлено!"); </script> <script type="text/javascript"> window.location = "http://yoga-art.kz/thanks.html" </script> </body> </html>