Email delivery
The form now sends inquiries to dearyea2017@gmail.com through FormSubmit. The first test email may require mailbox activation.
Send your contact details, country and product needs. Our team will review your inquiry and reply with a focused recommendation.
Fields marked * are required.
This static page is ready for frontend integration. Connect the form to email, CRM or a database endpoint before publishing.
The form now sends inquiries to dearyea2017@gmail.com through FormSubmit. The first test email may require mailbox activation.
Store submissions in a database table with fields for name, email, phone, company, country, product, message, source page and timestamp.
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)
});