smartformify
Pricing
No server runtime required

Receive Static Site Form Submissions

Connect a form on a static website directly to SmartFormify. Keep the current page design and receive submissions without PHP, server functions, or another backend service.

Create EndpointView Static Form Code

Deploy

Publish the static page

Submit

Browser sends the form

Process

Endpoint saves the data

Review

Response reaches the inbox

Static form setup

Point the form at the endpoint

SmartFormify handles the POST request outside the static site and returns either the configured redirect or its hosted thank-you page to the browser.

  • Use POST as the method
  • Give every submitted field a name
  • Add the deployed website domain
  • Test after the site is published

Static site contact form

html

Replace the endpoint placeholder and keep the site styles. SmartFormify receives the fields and returns the redirect or hosted thank-you page.

<form
  action="https://api.smartformify.com/fe/YOUR_ENDPOINT_KEY"
  method="POST"
>
  <label>
    Name
    <input name="name" required>
  </label>

  <label>
    Email
    <input type="email" name="email" required>
  </label>

  <label>
    Message
    <textarea name="message" required></textarea>
  </label>

  <button type="submit">Send</button>
</form>

Prepare each deployment domain

Only domains that submit directly from a browser need to be added to the endpoint.

Local testing

Add localhost only while the local page needs direct access.

Preview deployment

Add the active preview domain when reviewers need to submit.

Production

Add the final domain and test the published form before launch.

With a redirect

Return visitors to the website

Use a published confirmation page as the endpoint redirect URL.

Without a redirect

Show the hosted thank-you page

SmartFormify displays the configured thank-you content after the form is accepted.