Здравствуйте
подскажите каким образом можно добавить дополнительные поля для формы отправки сообщений?
{exp:email:contact_form user_recipients="false" recipients="****@gmail.com" charset="utf-8"}
<fieldset id="contact_fields">
<ul class="contactform_d">
<li>
<label for="name">
<span>Имя</span>
<input type="text" id="name" class="input_cfb" name="name" value="" />
</label>
</li>
<li>
<label for="from">
<span>E-Mail</span>
<input type="text" id="from" class="input_cfb" name="from" value="" />
</label>
</li>
Поле которое нужно добавить
<li>
<label for="phone">
<span>Phone</span>
<input type="text" id="phone" class="input_cfb" name="message" value="" />
</label>
</li>
<li>
<label for="subject">
<span>Тема сообщения</span>
<input type="text" id="subject" class="input_cfb_sub" name="subject" size="40" value="" />
</label>
</li>
<li class="limessage">
<label for="message">
<span>Сообщение</span>
<textarea id="message" name="message" style="width:419px;height:89px;margin:5px 0 0 0;" rows="5" cols="50"></textarea>
</label>
</li>
</ul>
</fieldset>
<fieldset id="contact_action">
<input name="submit" type='submit' value='' id='contactSubmit' class="send_btn" />
</fieldset>
{/exp:email:contact_form}
также хотелось узнать каким образом обозначить обязательные поля
на примере модуля “freeform”
required="name|email|subject|phone1|messege"