
Implement a lean, automated script to qualify inbound service inquiries before they reach your primary inbox.
If your contact form is open to the internet, a predictable thing happens: most of the people who fill it in are not your customers. They are price-shoppers, students doing research, competitors checking your rates, or people with a $50 budget looking for a $5,000 service. Responding to every inquiry manually is one of the most expensive habits a small business can have — expensive in time, in attention, and in the slow drain of optimism that comes from getting excited about leads that go nowhere. For $1, this article walks you through a practical, low-cost system that filters inbound inquiries automatically before they reach your inbox.
The system uses a basic API-based evaluation layer — no advanced coding required. You build a short qualification form, connect it to a lightweight scoring script, and set threshold rules that determine which inquiries get a human response and which receive an automated acknowledgement while you evaluate further. The whole setup takes an afternoon and costs less than $10 a month to run.
The Core Logic
Lead qualification is a scoring problem. You assign points to signals that indicate a high-quality inquiry and subtract points for signals that indicate a low-quality one. The signals vary by business, but common high-value indicators include: named company or organisation, specific budget range provided, specific project timeline mentioned, referral source listed. Common low-value indicators: no budget stated, timeline is 'whenever,' inquiry sent via a free email domain (Gmail, Yahoo, Hotmail), project description is fewer than 20 words.
The evaluation script assigns a score to each incoming inquiry based on these rules. Inquiries above a threshold (say, 70 out of 100) go directly to your primary inbox flagged as Priority. Inquiries between 40 and 70 go to a secondary review folder. Inquiries below 40 receive an automated response that asks three clarifying questions before any human time is spent.
Building the Qualification Form
Use any form tool — Typeform, Google Forms, or a native WordPress form will work. The form should include: name and company (required), email (required), project description (a text field with a 50-word minimum enforced), budget range (a dropdown with specific brackets, not a text field), timeline (dropdown: within 30 days, 1–3 months, 3–6 months, no firm timeline), and how they heard about you (dropdown with options).
The dropdown approach matters. Free-text budget fields produce answers like 'as low as possible' and 'flexible.' Dropdowns force a choice. A prospect who refuses to select a budget bracket is telling you something important about how they view the relationship before it has begun.
Set the form to require completion of all fields before submission. This single change eliminates a significant percentage of low-quality inquiries — most casual browsers will not invest two minutes in a structured form.
The Scoring Script
Connect your form to a simple webhook using Zapier, Make, or a basic Python script hosted on a free-tier service like PythonAnywhere. The webhook receives the form data and runs the scoring logic.
Assign point values: company name provided (+15), business email domain (+20), budget bracket above your minimum (+25), timeline within 3 months (+20), referral source named (+10), project description over 100 words (+10). Total available: 100 points.
Deduct points: free email domain (-15), no company name (-10), lowest budget bracket (-20), 'no firm timeline' selected (-15). Set your threshold rules and connect the output to your email system — high-score inquiries forward to your primary inbox, low-score inquiries trigger the automated clarification sequence.
The Automated Clarification Sequence
Low-scoring inquiries receive an automated email within five minutes of submission. The email does not say 'you have not qualified.' It says something like: 'Thank you for reaching out. Before I can prepare a response tailored to your project, I have three quick questions.' Then it asks for the three pieces of information that were missing or unclear.
This serves two purposes. It gives genuine prospects — those who filled in the form quickly without thinking carefully — a second chance to demonstrate their seriousness. And it filters out the casual inquiries, because a significant proportion will not respond to the follow-up questions at all. If a prospect cannot write three sentences in response to a direct question, they are unlikely to move forward in a meaningful sales process.
Set a reminder to review non-responding low-score inquiries once a week. Some will be worth a manual outreach. Most will not.
Cost and Maintenance
This system costs approximately $0 to $10 a month, depending on the tools you already have. Zapier's free tier handles up to 100 tasks a month — enough for most small service businesses. A basic Python script on PythonAnywhere's free tier costs nothing. The only ongoing cost might be a paid form tool if you want advanced logic, but Google Forms with a connected sheet and Zapier trigger is entirely free.
Review your scoring thresholds every quarter. As your business grows and your ideal client profile sharpens, adjust the point values to reflect what you have learned about which signals actually predict a successful engagement.
Iterating the Scoring Logic
After 60 days of live operation, review your scoring results. How many high-score inquiries converted to paid engagements? How many low-score inquiries were worth pursuing after the clarification sequence? Use this data to recalibrate your point values. If your high-score threshold is producing too many false positives — inquiries that score well but convert poorly — tighten the qualifying criteria. If it is producing too many false negatives — good prospects who score below threshold — loosen it.
The scoring system is a living tool, not a permanent fixture. Build in a quarterly review and treat the recalibration as a standing agenda item. Every adjustment makes the system more precise for your specific business and your specific ideal client profile.
Final Thought
Every hour spent on a low-quality inquiry is an hour not spent on a high-quality one. The evaluator does not just save time — it reallocates attention to where it produces the best return.
—
