General and mailer options
General options
- Form layout: options for the display layout of the form. Currently, Joomlab Form supports Bootstrap (v4 and v5) and UIkit v3.
- Control sizing: defines the size of fields, including small, medium, and large options.
- Horizontal: aligns labels on the same line as the input fields.
- Use recaptcha (v3): Enables anti-SPAM functionality using reCAPTCHA v3. You must configure the reCAPTCHA site key and secret in the component's global settings.
- Require user login: If enabled, users must log in to fill out the form.
- Submit button text: Custom the submit button text, defaults to Finish.
- Terms and conditions: Option to show/hide the "Terms and Conditions" checkbox at the bottom of the form. You can either enter your website's terms in the editor or select an existing article, and Joomlab Form will automatically extract its content. The terms and conditions content will be displayed in a popup modal when users click the link in the text: "I have read and agree / agreed with the terms and conditions." If users do not check this box, the form cannot be submitted.
Mailer options
-
Send email to client: sends an email to the user. Note that this email will be sent to TEXT fields with the email format.
- Email subject: the subject of the email. Format strings
{website}
and{guestName}
will be replaced with the website's name and the user's name, respectively. - Email content: the content of the email. Format strings
{website}
and{guestName}
, and {formData} will be replaced with the website's name, the user's name, and a summary of the form data in the format LABEL: VALUE.
- Email subject: the subject of the email. Format strings
-
Send email to admin: sends an email to the admin.
- Admin emails: enter a list of admin email addresses, separated by commas (,).
- Email subject: similar to the client's email subject.
- Email content: similar to the client's email content.
Formatting Strings
Every required field (except Free Text) must have a name
attribute. To dynamically use field values and include them in email content, the following format can be used:
{FIELD_NAME:label}
: the label of the field, translated if your website is multilingual.{FIELD_NAME:value}
: the value entered by the user.- Replace FIELD_NAME with the name attribute of the respective field.