Professional RFQ form for overseas B2B buyersWater meters | Valves | Flow meters | Instruments
B2B Inquiry

Tell us your product requirement.

Send your contact details, country and product needs. Our team will review your inquiry and reply with a focused recommendation.

  • Required fields are clearly marked.
  • Email and international phone formats are checked before submission.
  • Anti-spam honeypot field is included for backend filtering.
RFQ Form

Request a Quote

Fields marked * are required.

Please enter your name.
Please enter a valid business email.
Please enter a valid international phone number.
Optional, but helpful for B2B quotation.

Integration template

Backend handoff options

This static page is ready for frontend integration. Connect the form to email, CRM or a database endpoint before publishing.

Email delivery

The form now sends inquiries to dearyea2017@gmail.com through FormSubmit. The first test email may require mailbox activation.

Database storage

Store submissions in a database table with fields for name, email, phone, company, country, product, message, source page and timestamp.

Anti-spam

The page includes a hidden honeypot. You can add Turnstile, reCAPTCHA or server-side rate limits for production.

// React / JSX integration shape
const payload = {
  fullName, email, phone, company, country,
  productRequirement, message, source: "website-rfq"
};

await fetch("https://formsubmit.co/ajax/dearyea2017@gmail.com", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify(payload)
});