| Новости | FAQ | Авторы | Документация | В действии | Библиотека |
| Инструменты | Полезные ссылки | Хостинги | Скачать | Примеры | Форум |
egr 22.08.2002 12:46
надо так:^if(def $request:query){
<form action="ms.html" method="post">
<input type="text" value="Имя" name="name">:::
<input type="text" value="Мыло" name="mail"><br>
<input type="text" value="Кому" name="toname">:::
<input type="text" value="Кому мыло" name="tomail"><br>
<input type="text" value="Тема" name="subj"><br>
<textarea rows=15 cols=60 wrap="off" name="text">Текст письма</textarea>
<input type="submit" value="Send">
</form>
}{
^mail:send[
$.from[$form:name <$form:mail>]
$.to[$form:toname <$form:tomail>]
$.subject[$form:subj]
$.text[$form:text]
]
}