Oumma Contact – Drag & Drop Contact Form Builder
Oumma Contact is a professional form builder for WordPress that combines simplicity with power. Create beautiful, responsive contact forms in minutes with an intuitive drag-and-drop builder — no coding required. Whether you need a simple contact form, a feedback form, a booking request, or a multi-field application form, Oumma Contact gives you everything out of the box. Built for speed and accessibility, it works with any theme and loads only when needed. ✨ Key Features (Free) Drag-and-Drop Form Builder – Create and customize forms visually with an easy-to-use interface 30+ Field Types – Text, email, phone, textarea, select, radio, checkbox, number, full name, date, time, file upload, signature, rating, NPS, address, URL, range slider, switch, color picker, IBAN, GDPR consent, and more Anti-Spam Protection – Time-based verification, honeypot trap, reCAPTCHA v2/v3, IP/email/word blacklists, and rate limiting per IP Beautiful Form Design – Modern, mobile-responsive forms with customizable colors, borders, shadows, corner radius, and fonts Multi-Language Support – Fully translated in 11 languages including RTL (EN, FR, DE, ES, IT, PT, NL, PL, RU, TR, AR) Email Notifications – Receive submissions via beautifully formatted HTML emails Submission Management – View, filter, search, and export all entries from your dashboard Shortcode Integration – Embed anywhere with [oumma-contact id="X"] Elementor Widget – Native Elementor integration for drag-and-drop embedding Gutenberg Compatible – Works seamlessly with the block editor Unlimited Forms & Submissions – No limits whatsoever GDPR Ready – Built-in consent checkbox with customizable privacy policy link Dashboard Widget – View recent submissions at a glance Lightweight & Fast – Minimal footprint, assets loaded only on pages with forms 🚀 Premium Add-on A separate Premium add-on extends Oumma Contact with: SMTP configuration – Built-in SMTP setup with test tool for reliable email delivery Auto-reply emails – Automatic confirmation emails to form submitters CSV export – Export all submissions to CSV Form duplication – Duplicate forms with one click Advanced design options – Premium styling controls for inputs, labels, and buttons The free plugin contains no premium code — the premium add-on adds all functionality via WordPress hooks. Get Oumma Contact → 🌍 Available Languages Oumma Contact is fully translated in 11 languages: 🇬🇧 English 🇫🇷 Français 🇩🇪 Deutsch 🇪🇸 Español 🇮🇹 Italiano 🇵🇹 Português 🇳🇱 Nederlands 🇵🇱 Polski 🇷🇺 Русский 🇹🇷 Türkçe 🇸🇦 العربية (RTL supported) External services Google reCAPTCHA This plugin optionally uses Google reCAPTCHA to protect forms against spam submissions. When enabled by the site administrator, the plugin: Loads the reCAPTCHA JavaScript library from https://www.google.com/recaptcha/api.js Sends the user’s reCAPTCHA response token to https://www.google.com/recaptcha/api/siteverify for server-side verification Data sent to Google: reCAPTCHA response token, site key, user’s IP address, and browser user-agent. This service is only active when the administrator configures reCAPTCHA keys in the plugin settings (Oumma Contact > Settings > Security). Google Terms of Service: https://policies.google.com/terms Google Privacy Policy: https://policies.google.com/privacy SMTP Provider Documentation Links The plugin settings page (admin only) displays informational links to third-party SMTP provider documentation to help administrators configure their email settings. These are standard hyperlinks displayed in the admin interface — no data is sent to these services by the plugin. The following documentation links may be displayed depending on the selected SMTP provider: Gmail: https://support.google.com/accounts/answer/185833 — Google Privacy Policy Microsoft Outlook / 365: https://learn.microsoft.com/en-us/exchange/clients-and-mobile-in-exchange-online/authenticated-client-smtp-submission — Microsoft Privacy Policy Mailjet: https://app.mailjet.com/account/apikeys — Mailjet Privacy Policy Brevo (Sendinblue): https://app.brevo.com/settings/keys/smtp — Brevo Privacy Policy SendGrid: https://app.sendgrid.com/settings/api_keys — SendGrid Privacy Policy Mailgun: https://app.mailgun.com/app/sending/domains — Mailgun Privacy Policy Postmark: https://account.postmarkapp.com/servers — Postmark Privacy Policy OVH: https://help.ovhcloud.com/csm/en-emails-configure-email-address — OVH Privacy Policy Zoho Mail: https://www.zoho.com/mail/help/zoho-smtp.html — Zoho Privacy Policy SMTP2GO: https://app.smtp2go.com/settings/users/ — SMTP2GO Privacy Policy When the administrator configures SMTP, the plugin sends emails through the configured SMTP server using the credentials provided by the administrator. The plugin itself does not communicate with any of these providers’ APIs — it only uses standard SMTP protocol to relay emails. Oumma Pro License API The optional Premium add-on communicates with the Oumma Pro license server at https://oumma-pro.com/wp-json/cplm/v1/ to verify and activate license keys. Data sent: license key and site URL. This communication occurs during license activation, periodic license verification, and update checks. This service is only active when the Premium add-on is installed and a license key is entered. Terms of Service: https://oumma-pro.com/cgu/ Privacy Policy: https://oumma-pro.com/politique-de-confidentialite/
Top keywords
- com17×2.28%
- https17×2.28%
- privacy14×1.88%
- policy13×1.74%
- privacy policy13×1.74%
- google11×1.48%
- recaptcha9×1.21%
- smtp9×1.21%
- contact8×1.07%
- form8×1.07%
- oumma8×1.07%
- forms7×0.94%
Store file uploads for Contact Form 7
By default, Contact Form 7 dose not keep data it sends trough it’s contact forms. While plugins like Flamingo save that data, uploaded files are not added to Media Library. This plugin will save uploaded files to Media Library before email is sent by CF7. This plugin will raise an event with the the full file path & name. Subscribe to nmr_create_attachment_file_name filter to get and/or update data before attachment is added to media library. // The filter callback function. function example_callback( $file_name ) { // (maybe) modify $file_name. return $file_name; } add_filter( 'nmr_create_attachment_file_name', 'example_callback', 10, 1 ); Subscribe to nmr_before_insert_attachment filter to be able to change attachment attributes: caption and description are ‘post_excerpt’ and ‘post_content’. For other attributes, check documentation for wp_insert_attachment. // The filter callback function. function before_insert_attachment_callback( $attachment ) { // (maybe) modify $attachment array. return $attachment; } add_filter( 'nmr_before_insert_attachment', 'before_insert_attachment_callback', 10, 1 ); Optionally, subscribe to nmr_should_skip_save_attachment_to_media_library filter to be able to skip saving the attachment to media library: return true to skip, false is the default behaviour that saves the attachment to media library. Filter nmr_before_insert_attachment will not be called if skip was true. // The filter callback function. function skip_media_library_callback( $skip_save_to_media_library ) { // return true to skip saving to Media Library, false to save. return true; } add_filter( 'nmr_should_skip_save_attachment_to_media_library', 'skip_media_library_callback', 10, 1 ); This plugin will send the final attachment id if you are interested in getting other details, like attachment url. Listen to nmr_create_attachment_id_generated action. // The action callback function. function example_callback_id_generated( $attachment_id ) { // (maybe) do something with the args. $url = wp_get_attachment_url( $attachment_id ); } add_action( 'nmr_create_attachment_id_generated', 'example_callback_id_generated', 10, 1 ); Docs & Support Check the support forum on WordPress.org. If you can’t locate any topics that pertain to your particular issue, post a new topic for it. Store file uploads for Contact Form 7 Needs Your Support It is hard to continue development and support for this free plugin without contributions from users like you. If you enjoy using -Store file uploads for Contact Form 7- and find it useful, please consider making a donation. Your donation will help encourage and support the plugin’s continued development and better user support. Privacy Notices With the default configuration, this plugin, in itself, does not: track users by stealth; write any user personal data to the database; send any data to external servers; use cookies. It will, however store uploaded files trough Contact Form 7 in WordPress Media Library. Make sure your website users are aware of this fact!!! Pro Version Need more? The Pro version adds 13 features: Per-form control — choose which forms save files, set custom folder and rename pattern per form Auto-rename — rename files using patterns like {name}-{date}.{ext} from other CF7 fields Unique filenames — automatically avoid overwriting files with the same name Custom upload folder — save files to a specific subfolder per form File URL in email — replace [file] mail tag with a clickable link instead of an attachment Skip-mail compatibility — save files even when CF7’s skip_mail: on is set Upload log — admin screen listing every uploaded file with form, date, size, and download link Private files — store files outside the Media Library with access protection Admin notification — receive an email with file link on every upload Flamingo integration — link uploaded files to Flamingo inbound message entries Auto-delete — remove uploads older than a configurable number of days Image resize / compress — resize and compress images on upload Duplicate detection — skip saving if the same file was already uploaded (MD5 check) Get Pro →