Free endpoint for your HTML forms

Start sending form post data to Email in less than 5 minutes (no signup required)

Learn more!

Getting started

Simply post your form to https://formpost.app/[email protected] to start forwarding form submissions to your email. Use the below interactive playgrod to see how it works.

Super charge your form using advanced features. Learn more


See the Pen formpost.app demo by shobankr (@shobankr) on CodePen.

1. Prepare your form

Point your form to https://formpost.app/[email protected] where [email protected] is the email where you want to receive your submissions.

                        <form action="https://formpost.app/[email protected]" method="POST" />
                    

2. Name your fields

Add name property to your form fields and start receiving your emails immediately.

                        <input type="email" name="email">
                    

3. Advanced options (optional)

Add advanced features like redirecting to custom page, webhooks etc just by adding hidden form fields.

fp_redirect

Add a hidden form field named fp_redirect to redirect users after submission.

    <input type="hidden" name="fp_redirect" value="http://mywebsite.com/thank-you" >
fp_webhook

Add a hidden form field named fp_webhook to your form and we will automatically make a POST request to the supplied value.

    <input type="hidden" name="fp_webhook" value="http://mywebsite.com/api/readform" >
fp_subject

Add a hidden form field named fp_subject to your set a custom subject for the email sent to you.

    <input type="hidden" name="fp_subject" value="New support request" >
fp_reply

Add a hidden form field named fp_reply to send an automatic response. Make sure you collect email using an email input field.

    <input type="hidden" name="fp_reply" value="true" >
fp_reply_message

Add a hidden form field named fp_reply_message to set a email body for fp_reply feature.

    <input type="hidden" name="fp_reply_message" value="Thank you for contacting us!" >
fp_reply_from

Add a hidden form field named fp_reply_from to set from name for fp_reply feature.

    <input type="hidden" name="fp_reply_from" value="My awesome website!" >

Contact