License Key WordPress

Contact Form Pro

📝Premium Drag-and-Drop Contact Form Builder for WordPress.
€29.00
Total: €29.00
Sign in for Free Trial
Version1.0.0
LicenseSingle domain
Activations1
ValidityLifetime
Support6 months

Product Details

First Release 29 April 2026
Last Update 29 April 2026
Compatible Browsers IE11, Firefox, Safari, Opera, Chrome, Edge
Software Version WordPress 6.9.x
Requires WP 5.6+
Requires PHP 8.2+
Compatible With Bootstrap 5.x
Gutenberg Optimized Yes
High Resolution Yes
Files Included PHP, JavaScript JS, CSS, Markdown

Description

Contact Form Pro — Full Product Description & Changelog

Developer: XaniaCode — https://xaniacode.com
Version: 1.0.0
License: Commercial (14-day free trial included)
Requires: WordPress 5.6+ · PHP 8.2+ · Tested up to WP 6.9


What Is Contact Form Pro?

Contact Form Pro is a premium WordPress plugin developed by XaniaCode that delivers a complete, enterprise-grade contact form solution — built from the ground up with security, flexibility, and deliverability at its core. It combines a visual drag-and-drop form builder, a multi-driver email system, advanced anti-spam protection, and a full submission management interface, all in a single self-contained plugin that requires no external dependencies or third-party SaaS subscriptions to get started.

Unlike lightweight free alternatives, Contact Form Pro is engineered for production environments where email reliability, data integrity, and protection from spam and abuse are non-negotiable requirements.


Feature Overview

1. Drag & Drop Visual Form Builder

The form builder uses a three-panel layout: a field palette on the left, a live canvas in the center, and a contextual settings panel on the right. Fields are dragged from the palette onto the canvas and reordered freely via a sortable interface.

25+ supported field types across six categories:

  • Basic fields: Text, Email, Phone, Number, Textarea, URL, Password
  • Choice fields: Dropdown (select), Multi-select, Radio buttons, Checkboxes, Toggle
  • Date & Time: Date picker, Time picker, Date-time picker, Month picker, Week picker
  • Media & Special: File upload, Image upload, Signature capture (canvas-based), Color picker
  • Advanced fields: Star rating, Slider, Range (dual-handle), Acceptance checkbox, Hidden field
  • Layout elements: Section heading, Divider, Raw HTML block, Submit button

Each field supports: custom label, placeholder text, required/optional toggle, responsive width control (full / half / one-third column), custom CSS classes, and field-type-specific options (e.g., min/max/step for numbers, accepted file types for uploads, max-rating value for star fields).


2. Multi-Driver Email System

Contact Form Pro includes a fully integrated email delivery layer that supports five independent drivers, selectable from the Settings panel without touching any code:

DriverProtocolNotes
WordPress Defaultwp_mailWorks out of the box, uses server mail
SMTPPHPMailer + TLS/SSLFull auth support, SSL peer verification enforced
SendGridREST API v3Attachments encoded as base64
MailgunREST APIDomain + API key configuration
Amazon SESREST API v2Native AWS Signature v4 — no SDK required

SMTP Quick Presets ship for the most common providers: Gmail, Outlook, Yahoo, Office 365, Zoho Mail, and Mailhog (for local development).

All drivers support HTML emails, Reply-To headers, Cc recipients, and file attachments. Sensitive credentials (SMTP password, API keys) are stored encrypted on disk and never re-displayed in the admin UI — the interface uses a "leave blank to keep current" pattern for all secret fields.

A built-in Test Email button lets administrators verify their configuration instantly without submitting a live form.


3. File Upload System

File uploads are handled through a dedicated upload class with a multi-layered security pipeline that runs on every uploaded file:

  1. Size validation — configurable per-site maximum (default 5 MB), enforced server-side
  2. Extension whitelist — admin-configurable allowed extensions (default: jpg, jpeg, png, gif, pdf, doc, docx, xls, xlsx, zip)
  3. MIME type verification — actual MIME type is read from the file content using PHP's finfo extension, not from the browser-supplied header
  4. Field-level accept attribute enforcement — per-field accepted types are validated server-side (extension pattern, MIME wildcard, or exact MIME)
  5. Image-type verification — image upload fields additionally verify the MIME starts with image/
  6. PHP code injection scanning — first 512 bytes of every file are scanned for <?php or <?= patterns
  7. Random filename assignment — saved files receive uniqid-based names, preventing filename-based attacks
  8. Directory protection — the upload directory is automatically created with an .htaccess file using both Apache 2.4 (Require all denied) and 2.2 (Deny from all) syntax, a blank index.html, and a silent index.php to prevent directory listing

Multiple file uploads per field are supported, with a per-field multiple flag. Non-required upload errors are logged server-side but do not block submission; required upload errors immediately halt processing and return field-level error messages to the user.


4. Signature Capture

A canvas-based signature field with:

  • Full touch support (mobile and tablet)
  • HiDPI / Retina display rendering
  • "Clear" button for re-signing
  • Server-side blank canvas detection — a required signature field is rejected if the user has not actually drawn anything (detection based on PNG data size threshold)
  • Signatures are saved as individual PNG files on disk rather than stored as inline base64 blobs in the database, keeping entry storage efficient

5. Enterprise-Grade Security Layer

Security is the most deeply engineered aspect of Contact Form Pro. Every submission passes through a sequential gate of checks:

CSRF Protection

Every form submission is validated against a WordPress nonce (wp_verify_nonce) before any processing occurs. All admin AJAX actions are also nonce-protected.

Honeypot Anti-Spam

A hidden text field is injected into every form. Its name is dynamically derived from wp_salt(), making it unpredictable to bots. Any submission that fills in the honeypot is silently rejected and logged.

Google reCAPTCHA v3

When enabled, the plugin performs full server-side reCAPTCHA verification including:

  • Score threshold (≥ 0.5 required)
  • Action verification — token must be for action submit, preventing token replay from other pages on the same site
  • Hostname verification — the reCAPTCHA response hostname is compared against the site's own domain, blocking cross-site token misuse

Rate Limiting

Per-IP, per-form transient-based rate limiter. Configurable maximum submission count and time window (default: 5 submissions per 60 seconds). Rate-limited IPs are logged to the spam log.

IP Blocklist

Supports individual IP addresses and CIDR notation for both IPv4 and IPv6. The blocklist is managed from the admin settings panel. CIDR matching uses bit-mask arithmetic and correctly handles both address families.

Trusted Proxy / CDN Support

Client IP detection defaults. Proxy headers are only trusted when the request originates from an explicitly configured trusted proxy IP or CIDR range, preventing IP spoofing through header injection.

Credential Encryption

All sensitive settings (SMTP password, SendGrid API key, Mailgun API key, Amazon SES secret, reCAPTCHA secret) are encrypted at rest using AES-256-CBC with a key derived from WordPress's wp_salt(). If the OpenSSL extension is unavailable, the plugin falls back to base64 obfuscation and automatically upgrades stored values on the next save once OpenSSL becomes available.

Spam Logging

Every blocked submission — whether by rate limit, honeypot, reCAPTCHA failure, or IP blocklist — is recorded to a dedicated cfp_spam_log database table with the IP address, block reason, and timestamp.

Output & Injection Prevention

  • All public output is escaped using esc_html(), esc_attr(), and wp_kses_post() as appropriate
  • Admin JavaScript uses DOM manipulation (createElement / textContent) rather than innerHTML with untrusted data
  • Exported CSV values are quoted per RFC 4180 with formula-trigger character neutralization to prevent CSV injection in spreadsheet applications
  • The X-Content-Type-Options: nosniff header is sent on every form submission response

6. Server-Side Validation

All field types are validated server-side regardless of client-side state:

Field TypeValidation Applied
Emailis_email()
URLFILTER_VALIDATE_URL
PhonePattern: +?[\d\s\-(). ]{7,20}
Number / Range / SliderNumeric check + configurable min/max bounds
Text / TextareaConfigurable min/max character length (mb_strlen)
Select / RadioValue checked against declared options array
Multi-select / CheckboxEach selected value checked against allowed options
DateYYYY-MM-DD format
TimeHH:MM or HH:MM:SS format
Datetime-localISO 8601 datetime format
MonthYYYY-MM format
WeekYYYY-Www format
Color6-digit hex #RRGGBB
RatingInteger within 1 to configured max_rating
File / ImageChecked against $_FILES (not $_POST) for required status
SignatureCanvas PNG data checked for minimum size (non-blank)

7. Submission Storage & Management

When submission storage is enabled, entries are saved to the cfp_entries database table with:

  • Form ID, submission status (unread / read)
  • All field values as JSON
  • Submitter IP address, user agent, and referrer URL
  • Timestamp

The admin Entries screen provides:

  • Filtering by form
  • Paginated table with per-entry actions
  • Detail modal showing all field values in a readable layout
  • Mark-as-read
  • Delete individual entries
  • CSV export with proper RFC 4180 quoting and formula-injection prevention

8. Auto-Responder

Each form can be individually configured with an automatic confirmation email sent to the person who submitted the form. The plugin automatically detects the first email-type field in the form as the reply address. Configurable per form:

  • Auto-responder toggle (on/off)
  • Custom subject line
  • Custom body text

9. Shortcode Integration

Forms are embedded anywhere in WordPress using:

[contact_form_pro id="X"]

The shortcode is cache-friendly: configuration (AJAX URL, nonce, i18n strings, file size limits) is injected as an inline <script> block alongside the form HTML, ensuring correct operation with page caching and asset optimization plugins. CSS and JavaScript assets are enqueued only when the shortcode is actually rendered on a given page, with no global asset loading.


10. Email Templating

The notification email sent to the site administrator uses a formatted HTML template:

  • Dark-header branding block with site name and URL
  • Two-column field table (label / value) for every submitted field
  • Footer row showing submitter IP, submission timestamp, and "Sent via Contact Form Pro"
  • File and image fields display original filenames; signature fields display the saved PNG filename

Subject lines and other per-form text support template tags: {field_id}, {site_name}, {site_url}, {date}, {time}, {form_id}.


11. Admin Interface

Forms List Card-based overview showing all created forms. Each card displays the form name, total entry count (fetched in a single aggregated query), the embeddable shortcode with a one-click copy button, and quick-action links to Edit, View Entries, and Delete.

Form Builder Full three-panel interface:

  • Left panel: field palette organized by category with drag handles
  • Center panel: sortable canvas with live field previews
  • Right panel: tabbed settings (General, Advanced, Style) with per-field configuration

Entries Dashboard Filterable, paginated table with submission counts, detail view modal, per-entry delete, and bulk CSV export.

Settings Panel Six-tab configuration interface:

  • Email — mail driver selection, From name/email, admin recipient
  • SMTP — host, port, encryption, auth credentials, quick presets
  • Providers — SendGrid, Mailgun, and Amazon SES API credentials
  • Uploads — max file size, allowed extensions
  • Security — honeypot toggle, rate limiting thresholds, IP blocklist, trusted proxies
  • reCAPTCHA — enable/disable, site key, secret key

12. Licensing System (XaniaCode License Manager v2.0)

Contact Form Pro ships with the XaniaCode License Manager, which provides:

  • 14-day free trial with full feature access
  • License activation and deactivation from the admin panel
  • Periodic license verification (every 12 hours)
  • Expiry warnings at 30, 7, and 3 days before expiry
  • Automatic plugin update checks and one-click updates from the WordPress updates screen
  • Secure API communication: license keys are sent via POST (never in URLs, server logs, or proxy caches); update downloads use HMAC-signed short-lived tokens

Advantages of Using Contact Form Pro

No Dependency on Third-Party Form Services

All form data, submissions, and configuration are stored locally in your WordPress database. There are no per-submission fees, no data leaving your server to a third-party SaaS platform, and no account to maintain with an external service.

Truly Flexible Email Delivery

Most contact form plugins rely exclusively on wp_mail, which is often blocked or marked as spam by receiving servers. Contact Form Pro lets you route email through whichever delivery infrastructure your business already uses — whether that is a dedicated SMTP account, SendGrid, Mailgun, or Amazon SES — without any additional plugin required.

Production-Ready Security Out of the Box

The layered security architecture (nonces + honeypot + reCAPTCHA v3 + rate limiting + IP blocklist + trusted proxy support + credential encryption + spam logging) is not an afterthought. It is built into the submission pipeline and is active from the first form submission. No security add-on or configuration wizard is needed to reach a secure baseline.

Accurate Spam Filtering Without False Positives

reCAPTCHA v3 operates invisibly — there are no CAPTCHAs for legitimate users to solve. The combination of honeypot (catches primitive bots), rate limiting (catches scripted flooding), and reCAPTCHA v3 with score + action + hostname verification (catches sophisticated bots) provides layered protection that minimises both spam and false positives.

Reliable File Handling

The multi-layer upload validation pipeline prevents the most common attack vectors (malicious file type disguised as an image, PHP webshell disguised as a document) without relying on browser-supplied metadata. Directory protection is applied automatically on activation.

Full Form Customisation Without Code

With 25+ field types, responsive column layouts, per-form themes (inherit / light / dark), and border style options, most design requirements can be met without writing any custom CSS or PHP.

Submission Audit Trail

The built-in entries storage and spam log give administrators a complete audit trail: who submitted what, when, from which IP, and whether any submissions were blocked — all accessible from the WordPress admin without a separate analytics tool.

Cache and Optimisation Plugin Compatible

Inline configuration injection means the form works correctly even when the page is served from a full-page cache. Assets are loaded conditionally per-page so the plugin does not degrade performance on pages that contain no forms.

Developer-Friendly Extension Point

The cfp_after_submission action hook fires after every successful submission, passing the entry ID, form ID, cleaned field data, and uploaded file metadata — giving developers a clean integration point for custom workflows (CRM sync, webhook calls, notification services) without modifying plugin files.


Requirements

RequirementMinimum
WordPress5.6
PHP8.2
PHP ExtensionsOpenSSL (recommended for credential encryption)
Tested up to WordPress6.9

Installation

  1. Upload the contact-form-pro folder to /wp-content/plugins/
  2. Activate the plugin via Plugins → Installed Plugins
  3. Go to Contact Forms → Contact Form Pro to enter your license key or start the 14-day free trial
  4. Configure email delivery in Contact Forms → Settings
  5. Create your first form via Contact Forms → Add New
  6. Embed the form with [contact_form_pro id="X"] in any post, page, or widget area.

Contact Form Pro v1.0.0 — © 2026 XaniaCode — https://xaniacode.com/products/contact-form-pro

Changelog

Author: XaniaCode
Minimum PHP: 8.2
Minimum WordPress: 5.6

First public release of Contact Form Pro — a complete contact form solution built for WordPress. Every feature listed below is included from day one.

Added

Form Builder

  • Visual drag-and-drop builder with an intuitive three-panel layout
  • 25+ field types across six categories: basic inputs, choice fields, date & time pickers, media uploads, advanced fields, and layout elements
  • Every field is fully customisable — labels, placeholders, required toggle, column width, and more

Email Delivery

  • Five email drivers included: WordPress default, SMTP, SendGrid, Mailgun, and Amazon SES
  • All drivers support HTML emails, Reply-To, Cc, and file attachments
  • Quick-setup presets for the most popular email providers

Rich Email Notifications

  • Beautiful, fully formatted email notifications for both you and your visitors
  • Field values rendered intelligently — file attachments as previews, signatures as images, ratings as stars, and more
  • Full dark-mode and mobile-responsive email layout out of the box

Auto-Responder

  • Automatic confirmation email sent to the visitor after every successful submission
  • Personalised with their submitted data using simple placeholder tags
  • Custom subject and body per form

Submission Management

  • Every submission is saved and accessible in the WordPress admin
  • Filterable list with pagination, detailed entry view, mark-as-read, and delete
  • Four export formats per entry: HTML, plain text, image (PNG), and print / PDF

Bulk Export

  • Select multiple entries and export them all at once
  • Combined HTML document, plain text, or a ZIP of individual PNG screenshots

Form Shortcode

  • Place any form anywhere with a simple shortcode
  • Assets load only on pages where the form appears — no unnecessary slowdowns

Per-Form Settings

  • Each form has its own recipient email, subject line, success message, and visual theme
  • Choose between light, dark, or inherited site theme, and rounded or straight borders

Responsive Design

  • Forms look great on all screen sizes — desktop, tablet, and mobile
  • Admin interface is fully responsive too
Security

Spam Protection

  • Invisible honeypot trap catches bots automatically on every form
  • Google reCAPTCHA v3 integration with full server-side score verification
  • All blocked submissions are logged for your review

Rate Limiting

  • Limits the number of submissions per visitor within a configurable time window
  • Prevents automated abuse without affecting real users

IP Blocklist

  • Block individual IP addresses or entire IP ranges
  • Supports both IPv4 and IPv6 with CIDR notation

Secure File Uploads

  • Every uploaded file is validated for type, size, and content before being accepted
  • Upload folder is protected against direct access and directory listing

Encrypted Credentials

  • All sensitive settings (email passwords, API keys) are encrypted at rest
  • Displayed as "leave blank to keep current" in the admin — never exposed again after saving

Anti-Injection Protection

  • All email headers and user input are sanitised before use
  • Exported CSV files are hardened against formula injection in Excel and Google Sheets

User Permissions

  • Three granular permission levels to control who can manage forms, view entries, and see visitor IP addresses
  • Role assignments are configurable and can be extended by developers

XaniaCode License Manager

  • 14-day free trial with no credit card required — all features unlocked from the start
  • Simple activation from the plugin settings; automatic update checks included

Frequently Asked Questions

One-time payment. You get a lifetime license with lifetime access to plugin updates. No recurring fees.
You need your own API keys from Anthropic and/or OpenAI. The plugin connects to whichever provider you configure — API costs go directly to your provider account. We do not proxy or resell AI credits.
Each license covers one production domain. Development and staging environments on the same root domain are included. For additional production sites, purchase additional licenses.
Yes. A 14-day trial with full features is available. Click "Start Free Trial" on the product page to download it.
WordPress 5.6 or higher and PHP 8.2 or higher. Tested up to WordPress 6.9. PHP 8.2 is the hard minimum — earlier versions are not supported.
Two providers are supported: Anthropic (Claude Sonnet 4.6, Opus 4.6, Haiku 4.5) and OpenAI (GPT-5.4, GPT-4o, GPT-4.1 families). You can switch provider in Settings. Vision AI lets you choose provider per-request.
API keys are encrypted at rest using AES-256-CBC with HMAC before being written to the database. You can also define them as PHP constants in wp-config.php to keep them out of the database entirely.
Five generation modes are available: product descriptions (with structured attributes, tags, SEO title, meta description, and SKU suggestion), blog articles (with outline, focus keywords, and CTA suggestion), translations into 13+ languages, SEO title suggestions, and Vision AI — which analyzes an uploaded product image and generates a full listing automatically.
JPEG, PNG, WebP, and GIF are supported. Maximum image size is 10 MB. The plugin verifies the real MIME type server-side — renaming a file to change its extension will not bypass the check.
Yes. A per-user rate limit applies to all generation endpoints. The default is 30 requests per minute. You can adjust this between 5 and 120 in the plugin settings.
Multisite compatibility is not confirmed for this version. If you run a Multisite network, test on a staging environment before deploying to production.
Updates are delivered directly inside WordPress admin via the standard Plugins screen. No manual download is needed once your license is activated.
Six months of direct developer support is included, accessible via the ticket system in your account dashboard. Support can be renewed after the initial period for a small fee.
We review refund requests individually for products that do not function on a clean WordPress install. No refund is issued for change-of-mind or incompatibilities introduced by third-party plugins or custom code. See the Refund Policy page for full details.
The plugin contacts our server only for license validation and update checks. All AI requests go directly from your server to Anthropic or OpenAI — no user content passes through XaniaCode infrastructure. No analytics, no third-party tracking is bundled.

Reviews

No reviews yet. Be the first to review this product!

Related Products

XC Bundle Products Builder
WordPress

XC Bundle Products Builder

XC Bundle Products Builder is a premium WooCommerce extension for selling powerful, customizable product bundles. Group existing products into ready-to-ship kits with flexible pricing, optional items, "choose N of M" mix-and-match, variation pickers, smart stock synchronization and a complete reports suite. Built by XaniaCode for serious stores.

XC Image Optimizer
WordPress

XC Image Optimizer

Premium self-hosted image compression, WebP/AVIF conversion, and bulk optimization for WordPress. No external API. No data leaves your server.

XC Woocommerce Subscriptions Lite
WordPress

XC Woocommerce Subscriptions Lite

A complete subscription engine for WooCommerce — recurring billing, free trials, content gating, dashboard analytics, and customer self-service. Paid once. Owned forever.

XC Product Filter Pro
Featured WordPress

XC Product Filter Pro

Advanced product filtering for WooCommerce — real-time AJAX results, SEO-friendly clean URLs, a full SEO Rules engine, and a CSS inherit-theme system that adapts to any storefront design.&nbsp;&nbsp;