Advertisement
krot

MODX FormIt Hello world

Sep 6th, 2017
644
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.48 KB | None | 0 0
  1. [[!FormIt?
  2. &hooks=`recaptcha,email,FormItAutoResponder`
  3. &emailTpl=`sentEmailTpl`
  4. &emailSubject=`Сообщение от [[+contact_name]]`
  5. &emailTo=`me@myemailaddress.com`
  6. &emailFrom=`[[+contact_email]]`
  7. &emailFromName=`[[+contact_name]]`
  8.  
  9. &fiarTpl=`autoResponseTpl`
  10. &fiarSubject=`Тема для отп отправителю`
  11. &fiarToField=`contact_email`
  12. &fiarFromName=`Learn MODx Website`
  13.  
  14. &validate=`contact_name:required:minLength=^2^:maxLength=^30^,contact_email:required:email,contact_message:required:minLength=^2^:maxLength=^500^`
  15. &successMessage=`Сообщение отправлено!`
  16. ]]
  17. [[!+fi.error_message]]
  18. [[!+fi.validation_error_message]]
  19. [[!+fi.successMessage]]
  20. <form class="customform" method="post" action="[[~[[*id]]]]">
  21.                       <div class="s-12"><input name="contact_email" value="[[!+fi.contact_email]]" placeholder="Your e-mail" title="Your e-mail" type="text" /></div>
  22.                       <div class="s-12"><input name="contact_name" value="[[!+fi.contact_name]]" placeholder="Your name" title="Your name" type="text" /></div>
  23.                       <div class="s-12"><textarea placeholder="Your massage" name="contact_message" rows="5">[[!+fi.contact_message]]</textarea></div>
  24.                       <div class="s-12">[[+formit.recaptcha_html]][[!+fi.error.recaptcha]]</div>
  25.                    
  26.                       <div class="s-12 m-12 l-4"><button class="color-btn" type="submit">Отправить</button></div>
  27.                     </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement