{"id":988890,"date":"2026-08-01T12:45:15","date_gmt":"2026-08-01T10:45:15","guid":{"rendered":"https:\/\/agence-webimmo.com\/comment-eviter-les-spams-dans-vos-formulaires\/"},"modified":"2026-08-01T12:45:15","modified_gmt":"2026-08-01T10:45:15","slug":"how-to-avoid-spam-in-your-forms","status":"publish","type":"post","link":"https:\/\/agence-webimmo.com\/en\/comment-eviter-les-spams-dans-vos-formulaires\/","title":{"rendered":"How to prevent spam in your forms"},"content":{"rendered":"<div class=\"vgblk-rw-wrapper limit-wrapper\">\n<p>contact form spam: if your inbox is overflowing with incoherent messages, shady links, or requests that sound too good to be true, you feel it immediately on the business side: wasted time, security risks, skewed marketing metrics, and sometimes even a drop in your email deliverability. The good news is that you can drastically reduce spam without breaking the user experience. Here\u2019s a comprehensive, pragmatic approach\u2014from form configuration to server-side checks, including automation and monitoring.<\/p>\n<h2>1) Strengthen the form without degrading the user experience<\/h2>\n<p>The first mistake is putting everything on a visible barrier (aggressive CAPTCHA, complex questions, overly strict validation) that drives away real prospects. The goal: increase the cost for bots while keeping a smooth path for a human.<\/p>\n<h3>Favor invisible and progressive protections<\/h3>\n<p>Modern solutions favor behavioral signals (filling time, movements, field consistency) rather than a puzzle or an always-on \u201cI am not a robot.\u201d If you\u2019re looking for an overview of current methods (bot detection, alternatives to classic CAPTCHA, best practices), the external article <a href=\"https:\/\/friendlycaptcha.com\/fr\/insights\/form-spam-prevention\/\" target=\"_blank\" rel=\"noopener\">Form spam: How to block bots and \u2026<\/a> details the most effective approaches and their impacts on conversion.<\/p>\n<p><img decoding=\"async\" class=\"alignleft resizethreehundred autoblog-img\" title=\"How to prevent spam in your forms\" src=\"https:\/\/agence-webimmo.com\/wp-content\/uploads\/2025\/11\/agence-web-immo-conseil-marketing-immobilier-digital-agence-a-businessman-and-woman-sit-at-an-office-table-dis-2025-02-15-20-24-57-utc.jpg\" alt=\"Real estate web agency \u2014 How to avoid spam in your forms\" \/><\/p>\n<h3>Use a well-designed honeypot field<\/h3>\n<p>A honeypot is a hidden field intended to trap robots that fill everything they find. A few simple rules:<\/p>\n<p>1) Don\u2019t name it website, url or email2 (bots learn). Use a neutral name (e.g. contact_ref).<\/p>\n<p>2) Hide it cleanly (CSS) without removing it from the DOM (some bots detect display:none fields, others don\u2019t).<\/p>\n<p>3) Server-side, if this field is filled: silently reject or quarantine.<\/p>\n<h3>Implement a minimum time constraint<\/h3>\n<p>A human rarely takes less than 3 to 5 seconds to complete a realistic form. Add a timestamp when displaying the form, then reject (or quarantine) submissions that are too fast. Warning: do not harshly block users who use autofill, but combine this signal with others (honeypot, score, reputation).<\/p>\n<h3>Limit fields and reduce attack surface<\/h3>\n<p>Each additional field is an opportunity for spam. Ask yourself: what do I need to properly process the request? Often, name + email + message are enough. To qualify, you can move some fields after initial contact (or to a subsequent step).<\/p>\n<h2>2) Validate and normalize data (client-side and server-side)<\/h2>\n<p>Browser-side validations improve UX but do not protect: a bot can submit by bypassing the interface. Golden rule: every validation must be repeated server-side.<\/p>\n<h3>Control the structure of sensitive fields<\/h3>\n<p>A few simple examples, but very effective:<\/p>\n<p>\u2013 Email: strict format validation, then normalization (lowercase, trim), and MX check if your volume allows.<\/p>\n<p>\u2013 Phone: accept different formats, but normalize (E.164) and reject overly long strings.<\/p>\n<p>\u2013 Message: limit length, block repeated character sequences, and detect URLs (many spam messages contain them).<\/p>\n<div class=\"frhwdquote\" style=\"background:url(https:\/\/agence-webimmo.com\/wp-content\/uploads\/2025\/11\/agence-web-immo-conseil-marketing-immobilier-digital-agence-hikers-on-the-den-treek-estate-near-leusden-2025-01-07-23-24-35-utc.jpg);background-size:cover;background-position:center center;box-shadow:inset 0 0 0 1000px rgba(255,255,255,.85);padding:6%;\">\n<h2 class=\"h2frhwdquote\">Take advantage of an analysis of your current site<\/h2>\n<p><a class=\"apromodemo\" href=\"https:\/\/agence-webimmo.com\/audit-gratuit-agence-immobiliere\/\" target=\"_blank\" rel=\"noopener\">Free Audit Of Your Site<\/a><\/p>\n<\/div>\n<h3>Block risky characters and content<\/h3>\n<p>Without preventing natural expression, you can reject:<\/p>\n<p>\u2013 Messages containing too many links (e.g. &gt; 2 URLs),<\/p>\n<p>\u2013 Typical spam strings (some known fingerprints),<\/p>\n<p>\u2013 Invisible characters \/ suspicious encodings.<\/p>\n<p>On the security side, always escape and sanitize inputs to avoid injections (XSS, header injection in email, etc.).<\/p>\n<h2>3) Implement an anti-spam scoring system rather than a binary block<\/h2>\n<p>The best anti-spam, in practice, is rarely allow\/deny based on a single criterion. Prefer a cumulative score:<\/p>\n<p>\u2013 + points if submission too fast,<\/p>\n<p>\u2013 + points if honeypot filled,<\/p>\n<p>\u2013 + points if email domain disposable,<\/p>\n<p>\u2013 + points if IP has poor reputation,<\/p>\n<p>\u2013 + points if message contains too many URLs,<\/p>\n<p>\u2013 + points if user-agent is suspicious.<\/p>\n<p>Then, depending on the score:<\/p>\n<p>\u2013 Low score: normal acceptance,<\/p>\n<p>\u2013 Medium score: acceptance but placed in moderation (quarantine),<\/p>\n<p>\u2013 High score: rejection, or silent acceptance without internal notification (avoids helping the bot calibrate).<\/p>\n<h2>4) Filter by emails, domains and business rules<\/h2>\n<p>In some sectors (B2B, real estate, local services), a large share of spam comes from disposable domains or recurring patterns. Adding business rules is often very cost-effective.<\/p>\n<h3>Block the most problematic sending domains<\/h3>\n<p>If you use HubSpot, there is a dedicated feature to prevent submissions from specific domains. The guide <a href=\"https:\/\/knowledge.hubspot.com\/fr\/forms\/block-form-submissions-from-specific-email-domains\" target=\"_blank\" rel=\"noopener\">Block the form submission or the lead flow\u2026<\/a> explains how to properly configure this type of blocking.<\/p>\n<h3>Handle edge cases without penalizing real prospects<\/h3>\n<p>Be careful not to block too broadly (e.g. all free providers). A useful compromise:<\/p>\n<p>\u2013 Allow, but require a confirmation step (double opt-in or verification email) if the domain is risky.<\/p>\n<p>\u2013 Require a Company or City field only for certain forms (e.g., partnership inquiries, recruitment) and not for a simple callback request.<\/p>\n<h3>Think B2B: secure without reducing conversion<\/h3>\n<p>If your context involves high-value leads (estimate requests, developers, new-build programs), the challenge is to filter aggressively without blocking a rushed decision-maker. The article <a href=\"https:\/\/formdz.com\/fr\/blog\/securisation-formulaire-contact-b2b-anti-spam\" target=\"_blank\" rel=\"noopener\">B2B Security: Block spam on your forms without \u2026<\/a> offers levers suited to this type of form, where lead quality outweighs volume.<\/p>\n<h2>5) Add an extra layer of protection at the infrastructure level<\/h2>\n<p>Spam is not only a form problem; it is also a traffic and infrastructure problem. In-depth protection reduces pressure on your site and tools.<\/p>\n<p><img decoding=\"async\" class=\"alignleft resizethreehundred autoblog-img\" title=\"How to prevent spam in your forms\" src=\"https:\/\/agence-webimmo.com\/wp-content\/uploads\/2025\/11\/agence-web-immo-conseil-marketing-immobilier-digital-agence-hikers-on-the-den-treek-estate-near-leusden-2025-01-07-23-24-35-utc.jpg\" alt=\"digital real estate agency \u2014 How to avoid spam in your forms\" \/><\/p>\n<h3>Rate limiting and limits by IP<\/h3>\n<p>Limit the number of submissions per IP within a time window (e.g., 3 submissions \/ 10 minutes). Add tiers:<\/p>\n<p>\u2013 First threshold: slowdown (artificial delay),<\/p>\n<p>\u2013 Second threshold: temporary block,<\/p>\n<p>\u2013 Third threshold: blacklisting (longer duration).<\/p>\n<h3>WAF, anti-bot rules and IP reputation<\/h3>\n<p>A WAF (Web Application Firewall) can cut off a large portion of automated traffic before it even reaches your application. You can also block certain countries\/regions if your activity is strictly local (use with caution).<\/p>\n<h3>Logs and traceability<\/h3>\n<p>Record useful signals (without unnecessarily storing personal data):<\/p>\n<p>\u2013 IP (or hash),<\/p>\n<p>\u2013 user-agent,<\/p>\n<p>\u2013 timestamp,<\/p>\n<p>\u2013 anti-spam score and rules triggered.<\/p>\n<p>This information is used to adjust your filters, understand spam waves, and prove the source of any abuse.<\/p>\n<h2>6) Prevent your email notifications from becoming a vulnerability<\/h2>\n<p>Many teams protect at the form level but forget the next step: internal notification emails. Yet spam often aims to:<\/p>\n<p>\u2013 Inject malicious links to deceive a colleague,<\/p>\n<p>\u2013 Saturate a shared mailbox,<\/p>\n<p>\u2013 Trigger costly workflows (CRM, automations).<\/p>\n<h3>Sanitize email rendering and neutralize links<\/h3>\n<p>Best practices:<\/p>\n<p>\u2013 Never insert user content as unescaped HTML.<\/p>\n<p>\u2013 Convert URLs to plain text (or quarantine them).<\/p>\n<p>\u2013 Add an internal warning if a message exceeds a risk threshold (Suspicious submission: too fast \/ too many links \/ risky domain).<\/p>\n<h3>Limit recipients and route intelligently<\/h3>\n<p>Instead of sending each submission to the whole team:<\/p>\n<p>\u2013 send to a triage inbox (or ticketing),<\/p>\n<p>\u2013 route according to reason (sales, customer support, partnership),<\/p>\n<p>\u2013 send to a salesperson only after a minimum validation (low score or email confirmation).<\/p>\n<h2>7) WordPress specifics: plugin, settings and common pitfalls<\/h2>\n<p>On WordPress, form spam is common because the ecosystem is widespread and therefore targeted. Protections vary by plugin (WPForms, Contact Form 7, Gravity Forms, etc.), but the principles remain the same: add layers, scoring, and server-side checks.<\/p>\n<p>For a structured approach (settings, anti-spam options, best practices for building the form), the external guide <a href=\"https:\/\/wpforms.com\/fr\/how-to-build-spam-free-wordpress-contact-forms-the-ultimate-guide\/\" target=\"_blank\" rel=\"noopener\">How to stop contact form spam in \u2026<\/a> is useful to check you haven't missed an obvious setting.<\/p>\n<div class=\"frhwdquote\" style=\"background:url(https:\/\/agence-webimmo.com\/wp-content\/uploads\/2025\/11\/agence-web-immo-conseil-marketing-immobilier-digital-agence-woman-shaking-hands-to-a-real-estate-agent-2024-12-10-00-55-46-utc.jpg);background-size:cover;background-position:center center;box-shadow:inset 0 0 0 1000px rgba(255,255,255,.85);padding:6%;\">\n<h2 class=\"h2frhwdquote\">Take advantage of an analysis of your current site<\/h2>\n<p><a class=\"apromodemo\" href=\"https:\/\/agence-webimmo.com\/audit-gratuit-agence-immobiliere\/\" target=\"_blank\" rel=\"noopener\">Free Audit Of Your Site<\/a><\/p>\n<\/div>\n<h3>Common pitfalls<\/h3>\n<p>\u2013 Leaving a form endpoint accessible without a nonce\/token (eases automation).<\/p>\n<p>\u2013 Using an old unmaintained plugin (increased attack surface).<\/p>\n<p>\u2013 Allowing attachments without checks (malware vector).<\/p>\n<h2>8) Protect your business forms: callback requests, estimates, appointment booking<\/h2>\n<p>High-value forms (estimates, visit requests, new development) attract more spam. They need to be more robust, but without unnecessary friction.<\/p>\n<h3>Match the level of friction to the form's value<\/h3>\n<p>Concrete examples:<\/p>\n<p>\u2013 Simple question form: invisible protections + light scoring.<\/p>\n<p>\u2013 Estimate\/mandate form: email or SMS confirmation, domain rules, stricter rate limiting.<\/p>\n<p>\u2013 Partnership \/ supplier form: stronger requirements (company field mandatory, disposable domain detection, moderation).<\/p>\n<h3>Automate the rest without letting spam trigger your workflows<\/h3>\n<p>If you have follow-up sequences, make sure they don't go out to suspicious leads. Once your filtering is in place, you can make your follow-ups more effective. To go further on the process side, you can consult <a href=\"https:\/\/agence-webimmo.com\/comment-automatiser-vos-relances-vendeurs-et-acquereurs\/\" target=\"_self\">How to automate your seller and buyer follow-ups<\/a>.<\/p>\n<h2>9) Measure, test and improve: the method that lasts over time<\/h2>\n<p>Spammers adapt. A perfect setup today can deteriorate in three months. The difference is in monitoring.<\/p>\n<h3>Set up simple metrics<\/h3>\n<p>Track at minimum:<\/p>\n<p>\u2013 spam rate (submissions quarantined \/ total),<\/p>\n<p>\u2013 false positive rate (legitimate leads blocked),<\/p>\n<p>\u2013 form conversion rate,<\/p>\n<p>\u2013 average completion time,<\/p>\n<p>\u2013 top domains and top originating countries (if relevant).<\/p>\n<h3>A\/B test protections<\/h3>\n<p>Test only one variable at a time:<\/p>\n<p>\u2013 honeypot + time check,<\/p>\n<p><img decoding=\"async\" class=\"alignleft resizethreehundred autoblog-img\" title=\"How to prevent spam in your forms\" src=\"https:\/\/agence-webimmo.com\/wp-content\/uploads\/2025\/09\/agence-webimmo.png\" alt=\"real estate agency \u2014 How to avoid spam in your forms\" \/><\/p>\n<p>\u2013 add an optional field moved to the end of the form,<\/p>\n<p>\u2013 stricter scoring thresholds on high-value forms.<\/p>\n<h3>Regularly audit the whole site + forms + deliverability<\/h3>\n<p>Spam on forms is sometimes only a symptom: pages too exposed, unprotected endpoints, permissive server rules, misconfigured notifications. If you want to identify weak points and prioritize fixes, <a href=\"https:\/\/agence-webimmo.com\/audit-gratuit-agence-immobiliere\/\" target=\"_self\">Take advantage of an analysis of your current site<\/a>.<\/p>\n<h2>10) Reduce the impact of spam on your operations (even when it gets through)<\/h2>\n<p>Even with good filtering, some spam will get through. The important thing is that it does not disrupt your operations or your data.<\/p>\n<h3>Quarantine rather than delete<\/h3>\n<p>Permanently deleting can prevent analysis of a new wave of spam. Prefer:<\/p>\n<p>\u2013 a Quarantine folder in your CRM,<\/p>\n<p>\u2013 a suspicious tag,<\/p>\n<p>\u2013 a short retention period (e.g. 14 to 30 days) for analysis.<\/p>\n<h3>Avoid polluting your databases and documents<\/h3>\n<p>If your organization automatically stores requests, be careful not to archive spam in client folders. Good document hygiene prevents dirtying the data and wasting time later. On this topic, <a href=\"https:\/\/agence-webimmo.com\/gestion-documentaire-digitaliser-vos-dossiers-clients\/\" target=\"_self\">Document management: digitize your client files<\/a> can help you structure your flows and prevent noise from becoming an operational debt.<\/p>\n<h2>11) Actionable checklist: your anti-spam plan in 60 minutes<\/h2>\n<p>If you need to act quickly, apply this sequence:<\/p>\n<p>1) Add a honeypot + minimal time check.<\/p>\n<p>2) Enable an invisible anti-bot protection (or equivalent) + scoring.<\/p>\n<p>3) Implement rate limiting on the form endpoint.<\/p>\n<p>4) Validate server-side: email format, field length, detection of excessive URLs.<\/p>\n<p>5) Filter disposable domains (at minimum: moderation).<\/p>\n<p>6) Protect notifications: escape content, flag suspicious, route to a triage inbox.<\/p>\n<p>7) Track two metrics: spam rate and conversion rate, then adjust thresholds.<\/p>\n<h2>Conclusion: effective anti-spam is multi-layered<\/h2>\n<p>To sustainably limit spam, combine discreet protections at the form level, strict server-side validations, business rules (domains, scoring), and an infrastructure layer (rate limiting\/WAF). Finally, secure the entire chain: notifications, CRM, automations. This multi-layered approach drastically reduces spam volume without sacrificing conversion, and gives you the necessary room to adapt to new waves of attacks.<\/p>\n<\/div>\n<p><!-- .vgblk-rw-wrapper --><\/p>","protected":false},"excerpt":{"rendered":"<p>contact form spam: if your inbox is overflowing with incoherent messages, dubious links or requests that are too good to be true, you feel it immediately on the business side: wasted time, security risks, skewed marketing metrics, and sometimes even a degradation of your email deliverability. The good news,\u2026<\/p>","protected":false},"author":2,"featured_media":988549,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_yoast_wpseo_focuskw":"spam formulaire de contact","_yoast_wpseo_title":"Comment \u00e9viter les spams dans vos formulaires","_yoast_wpseo_metadesc":"spam formulaire de contact \u00e9vitez les robots avec nos astuces, utiles pour agence de l'immobilier et lors d'un audit immobilier digital","_yoast_wpseo_opengraph-title":"Comment \u00e9viter les spams dans vos formulaires","_yoast_wpseo_opengraph-image":"https:\/\/agence-webimmo.com\/wp-content\/uploads\/2025\/11\/agence-web-immo-conseil-marketing-immobilier-digital-agence-woman-shaking-hands-to-a-real-estate-agent-2024-12-10-00-55-46-utc.jpg","_yoast_wpseo_twitter-title":"Comment \u00e9viter les spams dans vos formulaires","_yoast_wpseo_twitter-image":"https:\/\/agence-webimmo.com\/wp-content\/uploads\/2025\/11\/agence-web-immo-conseil-marketing-immobilier-digital-agence-woman-shaking-hands-to-a-real-estate-agent-2024-12-10-00-55-46-utc.jpg","footnotes":""},"categories":[50,114],"tags":[],"class_list":["post-988890","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog-actualites","category-formulaires-securises"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Comment \u00e9viter les spams dans vos formulaires<\/title>\n<meta name=\"description\" content=\"spam formulaire de contact \u00e9vitez les robots avec nos astuces, utiles pour agence de l&#039;immobilier et lors d&#039;un audit immobilier digital\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/agence-webimmo.com\/en\/how-to-avoid-spam-in-your-forms\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Comment \u00e9viter les spams dans vos formulaires\" \/>\n<meta property=\"og:description\" content=\"spam formulaire de contact \u00e9vitez les robots avec nos astuces, utiles pour agence de l&#039;immobilier et lors d&#039;un audit immobilier digital\" \/>\n<meta property=\"og:url\" content=\"https:\/\/agence-webimmo.com\/en\/how-to-avoid-spam-in-your-forms\/\" \/>\n<meta property=\"og:site_name\" content=\"Agence WebImmo\" \/>\n<meta property=\"article:published_time\" content=\"2026-08-01T10:45:15+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/agence-webimmo.com\/wp-content\/uploads\/2025\/11\/agence-web-immo-conseil-marketing-immobilier-digital-agence-woman-shaking-hands-to-a-real-estate-agent-2024-12-10-00-55-46-utc.jpg\" \/>\n<meta name=\"author\" content=\"blog\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"Comment \u00e9viter les spams dans vos formulaires\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/agence-webimmo.com\/wp-content\/uploads\/2025\/11\/agence-web-immo-conseil-marketing-immobilier-digital-agence-woman-shaking-hands-to-a-real-estate-agent-2024-12-10-00-55-46-utc.jpg\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"blog\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"11 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/agence-webimmo.com\/comment-eviter-les-spams-dans-vos-formulaires\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/agence-webimmo.com\/comment-eviter-les-spams-dans-vos-formulaires\/\"},\"author\":{\"name\":\"blog\",\"@id\":\"https:\/\/agence-webimmo.com\/#\/schema\/person\/4d36e90c8c2c644a7e1ffdbcb408b983\"},\"headline\":\"Comment \u00e9viter les spams dans vos formulaires\",\"datePublished\":\"2026-08-01T10:45:15+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/agence-webimmo.com\/comment-eviter-les-spams-dans-vos-formulaires\/\"},\"wordCount\":2163,\"publisher\":{\"@id\":\"https:\/\/agence-webimmo.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/agence-webimmo.com\/comment-eviter-les-spams-dans-vos-formulaires\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/agence-webimmo.com\/wp-content\/uploads\/2025\/11\/agence-web-immo-conseil-marketing-immobilier-digital-agence-woman-shaking-hands-to-a-real-estate-agent-2024-12-10-00-55-46-utc.jpg\",\"articleSection\":[\"blog actualites\",\"Formulaires s\u00e9curis\u00e9s\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/agence-webimmo.com\/comment-eviter-les-spams-dans-vos-formulaires\/\",\"url\":\"https:\/\/agence-webimmo.com\/comment-eviter-les-spams-dans-vos-formulaires\/\",\"name\":\"Comment \u00e9viter les spams dans vos formulaires\",\"isPartOf\":{\"@id\":\"https:\/\/agence-webimmo.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/agence-webimmo.com\/comment-eviter-les-spams-dans-vos-formulaires\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/agence-webimmo.com\/comment-eviter-les-spams-dans-vos-formulaires\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/agence-webimmo.com\/wp-content\/uploads\/2025\/11\/agence-web-immo-conseil-marketing-immobilier-digital-agence-woman-shaking-hands-to-a-real-estate-agent-2024-12-10-00-55-46-utc.jpg\",\"datePublished\":\"2026-08-01T10:45:15+00:00\",\"description\":\"spam formulaire de contact \u00e9vitez les robots avec nos astuces, utiles pour agence de l'immobilier et lors d'un audit immobilier digital\",\"breadcrumb\":{\"@id\":\"https:\/\/agence-webimmo.com\/comment-eviter-les-spams-dans-vos-formulaires\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/agence-webimmo.com\/comment-eviter-les-spams-dans-vos-formulaires\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/agence-webimmo.com\/comment-eviter-les-spams-dans-vos-formulaires\/#primaryimage\",\"url\":\"https:\/\/agence-webimmo.com\/wp-content\/uploads\/2025\/11\/agence-web-immo-conseil-marketing-immobilier-digital-agence-woman-shaking-hands-to-a-real-estate-agent-2024-12-10-00-55-46-utc.jpg\",\"contentUrl\":\"https:\/\/agence-webimmo.com\/wp-content\/uploads\/2025\/11\/agence-web-immo-conseil-marketing-immobilier-digital-agence-woman-shaking-hands-to-a-real-estate-agent-2024-12-10-00-55-46-utc.jpg\",\"width\":1500,\"height\":1000},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/agence-webimmo.com\/comment-eviter-les-spams-dans-vos-formulaires\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/agence-webimmo.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Comment \u00e9viter les spams dans vos formulaires\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/agence-webimmo.com\/#website\",\"url\":\"https:\/\/agence-webimmo.com\/\",\"name\":\"Agence WebImmo\",\"description\":\"Agence web de l&#039;immobilier\",\"publisher\":{\"@id\":\"https:\/\/agence-webimmo.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/agence-webimmo.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/agence-webimmo.com\/#organization\",\"name\":\"Agence WebImmo\",\"url\":\"https:\/\/agence-webimmo.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/agence-webimmo.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/agence-webimmo.com\/wp-content\/uploads\/2023\/04\/agence-2.png\",\"contentUrl\":\"https:\/\/agence-webimmo.com\/wp-content\/uploads\/2023\/04\/agence-2.png\",\"width\":919,\"height\":134,\"caption\":\"Agence WebImmo\"},\"image\":{\"@id\":\"https:\/\/agence-webimmo.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/agence-webimmo.com\/#\/schema\/person\/4d36e90c8c2c644a7e1ffdbcb408b983\",\"name\":\"blog\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/agence-webimmo.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/876a614fbc0c97ce4f5f6a95482e89a7d79387c0bd1ee7da0017566e317649a1?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/876a614fbc0c97ce4f5f6a95482e89a7d79387c0bd1ee7da0017566e317649a1?s=96&d=mm&r=g\",\"caption\":\"blog\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to prevent spam in your forms","description":"contact form spam avoid bots with our tips, useful for real estate agencies and during a digital real estate audit","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/agence-webimmo.com\/en\/how-to-avoid-spam-in-your-forms\/","og_locale":"en_US","og_type":"article","og_title":"Comment \u00e9viter les spams dans vos formulaires","og_description":"spam formulaire de contact \u00e9vitez les robots avec nos astuces, utiles pour agence de l'immobilier et lors d'un audit immobilier digital","og_url":"https:\/\/agence-webimmo.com\/en\/how-to-avoid-spam-in-your-forms\/","og_site_name":"Agence WebImmo","article_published_time":"2026-08-01T10:45:15+00:00","og_image":[{"url":"https:\/\/agence-webimmo.com\/wp-content\/uploads\/2025\/11\/agence-web-immo-conseil-marketing-immobilier-digital-agence-woman-shaking-hands-to-a-real-estate-agent-2024-12-10-00-55-46-utc.jpg","type":"","width":"","height":""}],"author":"blog","twitter_card":"summary_large_image","twitter_title":"Comment \u00e9viter les spams dans vos formulaires","twitter_image":"https:\/\/agence-webimmo.com\/wp-content\/uploads\/2025\/11\/agence-web-immo-conseil-marketing-immobilier-digital-agence-woman-shaking-hands-to-a-real-estate-agent-2024-12-10-00-55-46-utc.jpg","twitter_misc":{"Written by":"blog","Est. reading time":"11 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/agence-webimmo.com\/comment-eviter-les-spams-dans-vos-formulaires\/#article","isPartOf":{"@id":"https:\/\/agence-webimmo.com\/comment-eviter-les-spams-dans-vos-formulaires\/"},"author":{"name":"blog","@id":"https:\/\/agence-webimmo.com\/#\/schema\/person\/4d36e90c8c2c644a7e1ffdbcb408b983"},"headline":"Comment \u00e9viter les spams dans vos formulaires","datePublished":"2026-08-01T10:45:15+00:00","mainEntityOfPage":{"@id":"https:\/\/agence-webimmo.com\/comment-eviter-les-spams-dans-vos-formulaires\/"},"wordCount":2163,"publisher":{"@id":"https:\/\/agence-webimmo.com\/#organization"},"image":{"@id":"https:\/\/agence-webimmo.com\/comment-eviter-les-spams-dans-vos-formulaires\/#primaryimage"},"thumbnailUrl":"https:\/\/agence-webimmo.com\/wp-content\/uploads\/2025\/11\/agence-web-immo-conseil-marketing-immobilier-digital-agence-woman-shaking-hands-to-a-real-estate-agent-2024-12-10-00-55-46-utc.jpg","articleSection":["blog actualites","Formulaires s\u00e9curis\u00e9s"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/agence-webimmo.com\/comment-eviter-les-spams-dans-vos-formulaires\/","url":"https:\/\/agence-webimmo.com\/comment-eviter-les-spams-dans-vos-formulaires\/","name":"How to prevent spam in your forms","isPartOf":{"@id":"https:\/\/agence-webimmo.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/agence-webimmo.com\/comment-eviter-les-spams-dans-vos-formulaires\/#primaryimage"},"image":{"@id":"https:\/\/agence-webimmo.com\/comment-eviter-les-spams-dans-vos-formulaires\/#primaryimage"},"thumbnailUrl":"https:\/\/agence-webimmo.com\/wp-content\/uploads\/2025\/11\/agence-web-immo-conseil-marketing-immobilier-digital-agence-woman-shaking-hands-to-a-real-estate-agent-2024-12-10-00-55-46-utc.jpg","datePublished":"2026-08-01T10:45:15+00:00","description":"contact form spam avoid bots with our tips, useful for real estate agencies and during a digital real estate audit","breadcrumb":{"@id":"https:\/\/agence-webimmo.com\/comment-eviter-les-spams-dans-vos-formulaires\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/agence-webimmo.com\/comment-eviter-les-spams-dans-vos-formulaires\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/agence-webimmo.com\/comment-eviter-les-spams-dans-vos-formulaires\/#primaryimage","url":"https:\/\/agence-webimmo.com\/wp-content\/uploads\/2025\/11\/agence-web-immo-conseil-marketing-immobilier-digital-agence-woman-shaking-hands-to-a-real-estate-agent-2024-12-10-00-55-46-utc.jpg","contentUrl":"https:\/\/agence-webimmo.com\/wp-content\/uploads\/2025\/11\/agence-web-immo-conseil-marketing-immobilier-digital-agence-woman-shaking-hands-to-a-real-estate-agent-2024-12-10-00-55-46-utc.jpg","width":1500,"height":1000},{"@type":"BreadcrumbList","@id":"https:\/\/agence-webimmo.com\/comment-eviter-les-spams-dans-vos-formulaires\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/agence-webimmo.com\/"},{"@type":"ListItem","position":2,"name":"Comment \u00e9viter les spams dans vos formulaires"}]},{"@type":"WebSite","@id":"https:\/\/agence-webimmo.com\/#website","url":"https:\/\/agence-webimmo.com\/","name":"WebImmo Agency","description":"Real estate web agency","publisher":{"@id":"https:\/\/agence-webimmo.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/agence-webimmo.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/agence-webimmo.com\/#organization","name":"WebImmo Agency","url":"https:\/\/agence-webimmo.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/agence-webimmo.com\/#\/schema\/logo\/image\/","url":"https:\/\/agence-webimmo.com\/wp-content\/uploads\/2023\/04\/agence-2.png","contentUrl":"https:\/\/agence-webimmo.com\/wp-content\/uploads\/2023\/04\/agence-2.png","width":919,"height":134,"caption":"Agence WebImmo"},"image":{"@id":"https:\/\/agence-webimmo.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/agence-webimmo.com\/#\/schema\/person\/4d36e90c8c2c644a7e1ffdbcb408b983","name":"blog","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/agence-webimmo.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/876a614fbc0c97ce4f5f6a95482e89a7d79387c0bd1ee7da0017566e317649a1?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/876a614fbc0c97ce4f5f6a95482e89a7d79387c0bd1ee7da0017566e317649a1?s=96&d=mm&r=g","caption":"blog"}}]}},"_links":{"self":[{"href":"https:\/\/agence-webimmo.com\/en\/wp-json\/wp\/v2\/posts\/988890","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/agence-webimmo.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/agence-webimmo.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/agence-webimmo.com\/en\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/agence-webimmo.com\/en\/wp-json\/wp\/v2\/comments?post=988890"}],"version-history":[{"count":0,"href":"https:\/\/agence-webimmo.com\/en\/wp-json\/wp\/v2\/posts\/988890\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/agence-webimmo.com\/en\/wp-json\/wp\/v2\/media\/988549"}],"wp:attachment":[{"href":"https:\/\/agence-webimmo.com\/en\/wp-json\/wp\/v2\/media?parent=988890"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/agence-webimmo.com\/en\/wp-json\/wp\/v2\/categories?post=988890"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/agence-webimmo.com\/en\/wp-json\/wp\/v2\/tags?post=988890"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}