maxLength(100)->validate('message'); $validator->email()->validate('user-email'); // recaptcha validation $validator->recaptcha('6LcSY1oUAAAAAHXz7K72uP2thZT7xhZ5zc9Q5Vgc', 'Recaptcha Error')->validate('g-recaptcha-response'); // check for errors if ($validator->hasErrors()) { $_SESSION['errors']['contact-form-2'] = $validator->getAllErrors(); } else { $_POST['message'] = nl2br($_POST['message']); $email_config = array( 'sender_email' => 'contact@phpformbuilder.pro', 'sender_name' => 'Php Form Builder', 'recipient_email' => addslashes($_POST['user-email']), 'subject' => 'Contact from Php Form Builder', 'filter_values' => 'contact-form-2', 'sent_message' => '
Your message has been successfully sent !
' ); $sent_message = Form::sendMail($email_config); Form::clear('contact-form-2'); } } /* ================================================== The Form ================================================== */ $form = new Form('contact-form-2', 'vertical', 'novalidate', 'material'); // $form->setMode('development'); $form->startFieldset('Please fill in this form to contact us')->addInput('text', 'user-name', '', 'Your name : ', 'required') ->addInput('email', 'user-email', '', 'Your email : ', 'required') ->addHelper('Enter a valid US phone number', 'user-phone') ->addInput('text', 'user-phone', '', 'Your phone : ', 'data-intphone=true, data-fv-intphonenumber=true, data-initial-country=us, data-allow-dropdown=false, required') ->addTextarea('message', '', 'Your message : ', 'cols=30, rows=4, required') ->addPlugin('word-character-count', '#message', 'default', array('%maxAuthorized%' => 100)) ->addCheckbox('newsletter', '', 1, 'class=lcswitch mb-3, data-ontext=Yes, data-offtext=No, data-theme=yellow, checked=checked') ->printCheckboxGroup('newsletter', 'Suscribe to Newsletter') ->addInvisibleRecaptcha('6LcSY1oUAAAAAE6UUHkyTivIZvAO6DSU9Daqry8h') ->addBtn('submit', 'submit-btn', 1, 'Submit', 'class=btn waves-effect waves-light ladda-button, data-style=zoom-in') ->endFieldset() // jQuery validation ->addPlugin('formvalidation', '#contact-form-2'); ?>