Improve Wix Store Contact Form Lead Quality
Wix store owners need reliable leads from contact forms. Verifyr ensures inquiries come from real email addresses, saving your sales team time and boosting conversion rates.
The problem
Wix store contact forms are a primary channel for customer inquiries and sales leads. However, without proper validation, these forms are often abused by spammers or filled with invalid email addresses due to typos. Your team then wastes valuable time responding to un-deliverable emails or chasing down fake leads, leading to inefficient operations and a lower conversion rate on actual sales opportunities. This directly impacts the productivity of your customer service or sales team.
Each invalid email collected through your Wix contact form represents a missed opportunity and a drain on resources. If your team is spending 15 minutes per lead, and 1 in 5 emails are bad, you're effectively losing hours each week to unproductive outreach. Furthermore, receiving a high volume of spam can desensitize your team to legitimate inquiries, increasing the risk of overlooking valuable potential customers and harming your Wix store's reputation.
How Verifyr solves it
Concrete example
// Example: JavaScript for Wix Velo (Corvid) form validation
import { fetch } from 'wix-fetch';
export function myContactForm_wixForms_submit(event) {
const emailInput = $w('#emailInput').value;
return fetch('https://api.verifyrhq.com/v1/validate', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer YOUR_API_KEY'
},
body: JSON.stringify({ email: emailInput })
})
.then(response => response.json())
.then(data => {
if (!data.valid) {
$w('#errorMessage').text = 'Please enter a valid email address.';
$w('#errorMessage').show();
return Promise.reject('Invalid email'); // Prevent form submission
} else {
$w('#errorMessage').hide();
return Promise.resolve(); // Allow form submission
}
});
}