
Copy, paste, and you're done. No complex setup, no server configuration.
// React / Next.js Example
import { useState } from "react";
export const useQbixMail = () => {
const [loading, setLoading] = useState(false);
const [success, setSuccess] = useState(false);
const [error, setError] = useState(null);
const submit = async (formData) => {
setLoading(true);
setError(null);
try {
const response = await fetch("https://api.qbixlabs.com/send", {
method: "POST",
headers: {
"Content-Type": "application/json",
"ql-api-key": "[YOUR_API_KEY]",
},
body: JSON.stringify(formData),
});
const result = await response.json();
if (!response.ok) throw new Error(result.error || "Failed to send");
setSuccess(true);
return true;
} catch (err) {
setError(err.message);
return false;
} finally {
setLoading(false);
}
};
return { submit, loading, success, error };
};Works with Netlify, Vercel, GitHub Pages, and any static hosting platform.
Built for developers who value simplicity and reliability.
No server configuration, no infrastructure management. Just add your API key and start sending emails immediately.
Intelligent domain validation and rate limiting protect your inbox from spam without any configuration on your end.
View real-time delivery status, email logs, and analytics through our intuitive Admin Panel dashboard.
Powered by enterprise-grade infrastructure (Resend/AWS). 99.9% uptime guarantee with automatic failover.
Start free, scale as you grow. No hidden fees.
Everything you need to know about our serverless contact form API.
Join hundreds of developers who've already ditched their backend.
No credit card required • 100 emails free forever