Build a working contact form for your Vercel website. Send Vercel form data to email using API in three simple steps. See example code below. No backend or server code needed.
Show steps ↓Free to get started
You already know! Setting up form backend is pain. Web3Forms works without any Server or backend code.
All emails are sent directly to your email address. We never store your form submissions.
Web3Forms is an API based form backend. We can seamlessly integrate to any custom design or style.
Creating Vercel Contact Form is easy as 1 2 3. Just follow the steps and you’re done.
Verify your email and create an access key.
By signing up, you agree to our terms and privacy policy as well as give consent to reach you for marketing purposes.
Use the following code example to create a form inside your Vercel website.
export default function Contact() {
async function handleSubmit(event) {
event.preventDefault();
const formData = new FormData(event.target);
formData.append("access_key", "YOUR_ACCESS_KEY_HERE");
const object = Object.fromEntries(formData);
const json = JSON.stringify(object);
const response = await fetch("https://api.web3forms.com/submit", {
method: "POST",
headers: {
"Content-Type": "application/json",
Accept: "application/json"
},
body: json
});
const result = await response.json();
if (result.success) {
console.log(result);
}
}
return (
<>
<form onSubmit={handleSubmit}>
<input type="text" name="name"/>
<input type="email" name="email"/>
<textarea name="message"></textarea>
<button type="submit">Submit Form</button>
</form>
</>
);
}
Replace the access key with your actual key to start receiving email submissions.
formData.append("access_key", "YOUR_ACCESS_KEY_HERE");
Vercel Docs & code examples →Create your contact form for static website in minutes.
Create your FormGet started for free