# --- contact form configuration # --- array of email address or addresses to receive contact email contact_email = { info@yourdomain.com } # --- check for security arithmetic setting in form check_security = 1 # --- array of elements appearing in form - the key is the name of the form element # --- options email_address -> set to true to check if valid email address is passed, required -> when true, required form element, label -> used to label each element in email generated by form contact_form_elements = { email = { label = _("Email address"), email_address = 1, required = 1 }, name = { label = _("Name"), required = 1}, message = { label = _("Message"), required = 1} }