Standard browser form
Keep the existing HTML and page design. Set one form action, then let SmartFormify receive the submission, notify the owner, and store the response.
Submission path
Browser form
POST named fields
SmartFormify endpoint
Validate and save
Response inbox
Notify and follow up
Implementation
Every submitted input needs a name. SmartFormify processes the POST request and returns either the configured redirect or its hosted thank-you page to the browser.
Create an endpoint
Add the website domain and copy the endpoint URL.
Set the form action
Use the endpoint URL as the action and keep POST as the method.
Test from the website
Submit the form and confirm the response in SmartFormify.
HTML contact form
html
Replace the endpoint placeholder. SmartFormify receives the fields and returns the redirect or hosted thank-you page after the form is accepted.
<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>The browser sends the named fields directly to the endpoint.
Each input, select, and textarea name becomes a response label.
Add the website domain before testing a browser submission.
Option one
Set a redirect URL when the visitor should return to a confirmation page on the same website.
Option two
When no redirect is set, SmartFormify displays the endpoint thank-you content after the browser submits the form.