<HTML> <body bgcolor=fffafa> <h1 align="center"><font color=aaaaaa>This MailScript Produced by M()N$TeR</font></h1> <table align="center"> <form method="POST" action="sendmail.php"> <tr>От кого: <br> <input type="TEXT" name="frommail"> <br>Кому:<br> <input type="TEXT" name="tomailz"> <br>Тема: <br><input type="TEXT" name="mailtema"> <br>Текст: <br> <td><textarea name="mailtext" rows="10" cols="60"></textarea></td> </tr> <tr> <td align=center><input type="submit" value="Отправить" name="submit"></td> </tr> </form> <? if (isset($submit)){ mail($_POST['tomailz'],$_POST['mailtema'],$_POST['mailtext'],"From: $_POST['frommail'] "); echo "<h2>Сообщение отправлено!</h2>"; } ?> </body> </html>