OneClick Form Lite

설명

OneClick Form Lite adds a lightweight contact form to your WordPress site via shortcode:

  • Shortcode: [oneclickform]
  • Fields: Name, Email, Subject, Message + GDPR consent checkbox
  • Anti-spam: honeypot + server-side rate limiting
  • Delivery modes:
    • WordPress wp_mail()
    • Built-in SMTP
    • File mode (writes messages to your uploads directory)
  • Optional Google reCAPTCHA v3 (score-based)
  • Translations: EN (default) + FR, ES, PT-BR (via included .mo files)

Important notes:
* This plugin does NOT store submitted messages in the WordPress database.
* Messages are delivered by email (wp_mail/SMTP) or written to files (File mode).
* Your host/mail provider may store emails in logs and mailboxes.
* No minified/compiled assets are shipped with this plugin. All distributed CSS/JS is human-readable.

Documentation is included in the plugin:
docs/oneclick-form-lite-user-guide.html

Source code

The plugin ships unminified, human-readable JS/CSS source files. No build process is used.

External services

1) This plugin can optionally integrate Google reCAPTCHA v3 to help prevent spam form submissions.

When enabled:
– The visitor’s browser loads Google’s reCAPTCHA script:
https://www.google.com/recaptcha/api.js?render=YOUR_SITE_KEY
– The browser communicates with Google to obtain a reCAPTCHA token.

On form submission:
– The plugin sends the reCAPTCHA token to Google for verification:
https://www.google.com/recaptcha/api/siteverify
– The verification request includes the token and the submitter’s IP address (remoteip) when available.

Service provider: Google LLC
Terms of service: https://policies.google.com/terms
Privacy policy: https://policies.google.com/privacy

2) This plugin can also send emails via an SMTP server configured by the site administrator (optional).

When SMTP is enabled and an email is sent:
– The plugin connects to the configured SMTP host and port.
– Email data is transmitted to the SMTP server in order to deliver the message.

Data sent to the SMTP server may include:
– Sender and recipient addresses, subject, message content
– Technical email headers
– Authentication data (username/password) if configured by the site administrator

Service provider: The SMTP provider selected by the site administrator (e.g., hosting provider, Google Workspace, Microsoft 365, etc.)
Terms of service: See the selected SMTP provider’s terms
Privacy policy: See the selected SMTP provider’s privacy policy

스크린샷

  • Settings overview (Email delivery, SMTP, File mode, reCAPTCHA, test email, documentation).
  • SMTP settings (built-in SMTP host, port, security, and credentials).
  • Google reCAPTCHA v3 settings (site key, secret key, action, and threshold).
  • Theme compatibility (light/dark previews).
  • Front-end translations (EN, ES, PT, FR).
  • Front-end confirmation message after successful submission.

설치

  1. Upload the plugin folder to /wp-content/plugins/ (or Plugins > Add New > Upload Plugin).
  2. Activate the plugin.
  3. Go to Settings OneClick Form Lite.
  4. Configure at least:
    • To email (recipient)
    • Transport (WP Mail / SMTP / File mode)
  5. Add the form to a page: [oneclickform]

Note: The plugin language follows your WordPress site language (Settings General Site Language).

FAQ

Are messages stored in the database?

No. Messages are delivered by email (WP Mail/SMTP) or written as files in File mode.

Where does File mode write messages?

In your uploads directory, typically:
wp-content/uploads/ocf-mails/

Does this plugin send emails via SMTP?

Yes. You can choose WordPress (wp_mail), SMTP (built-in), or File mode.

How do I enable reCAPTCHA v3?

Enable reCAPTCHA in settings, then paste your Site Key + Secret Key.
Adjust Action and Threshold if needed.

Does reCAPTCHA send data to a third party?

If you enable Google reCAPTCHA, your site will send verification requests to Google.
You should disclose this in your site privacy policy.

Is GDPR consent included?

Yes. The form includes a consent checkbox and rejects submissions without consent.

Does the form support multiple languages?

Yes. The plugin includes translations (FR, ES, PT-BR). The front-end and settings screens use WordPress’ translation system and will display in the site language.

후기

이 플러그인에 대한 평가가 없습니다.

기여자 & 개발자

“OneClick Form Lite”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에 기여하였습니다.

기여자

자국어로 “OneClick Form Lite”(을)를 번역하세요.

개발에 관심이 있으십니까?

코드 탐색하기는, SVN 저장소를 확인하시거나, 개발 기록RSS로 구독하세요.

변경이력

1.1.3

  • Fix: Do not hide WordPress “Settings saved” admin notice.

1.1.2

  • Initial public release (submission build).