Deploy Serverless Forms

NodeJS app to send HTML form submissions by email

Deploy Serverless Forms

serverless-forms

lexoyo/serverless-forms

Just deployed

Deploy and Host Serverless Forms on Railway

Common Use Cases

This project is made for those who need to add forms to their static page or static website.

About Hosting

It is a simple nodejs server which forwards all POST submission by email, inspired by formspree.

Why Deploy

No database, 100% server (nodejs or Docker), just sends the submissions by email.

100% free software. No data is kept on the server. No tracking. No cookies.

Suggestion: thanks to the webhook feature you can automate the management of the submissions with tools like Huginn, node-red, codeberg/forgejo...

Links:

Usage

Test with the example form

Go to your Railway site to see the HTML form which resides in public/form.html.

Submit the form, and it will send you an email with the content of the form.

Customize the form

Create any html form on your web page which will POST data to the server. You'll receive all the form fields in the submission by email.

Example:

<form action="http://localhost:8080" method="post">
  <input required="" placeholder="Name" type="text">
  <input required="" placeholder="Email" name="email" type="email">
  <textarea required="" placeholder="Message" name="message"></textarea>
  <button type="submit">Send</button>
</form>

For this to work, the server must be started with the following environment variables:

TO="[email protected],[email protected]" \
EMAIL_USER="username" \
EMAIL_PASS="*******" \
EMAIL_HOST="mail.gandi.net" \
EMAIL_PORT=587 \
npm start

Tokens

This is a feature to avoid spam. You can use tokens in place of email addresses to avoid spam. The form will be expected to have a hidden field with the name token and the value of the token. If the token is found in the object, the email will be sent to the corresponding email address(es).

Start the app with the following environment variable

TO='{"token1":"[email protected]","token2":"[email protected],[email protected]"}' \
# ... other env variables
npm start

Add a hidden field to your form with the name token and the value of the token you want to use.

<form action="http://localhost:8080" method="post">
  <input value="token1" name="token" type="hidden">
  <input required="" placeholder="Name" type="text">
  <input required="" placeholder="Email" name="email" type="email">
  <textarea required="" placeholder="Message" name="message"></textarea>
  <button type="submit">Send</button>
</form>

Thank you page

You can provide a link to a thank you page in the form. The server will redirect to this page after the form is submitted.

<form action="http://localhost:8080" method="post">
  <input required="" placeholder="Name" type="text">
  <input required="" placeholder="Email" name="email" type="email">
  <textarea required="" placeholder="Message" name="message"></textarea>
  <button type="submit">Send</button>
  <input value="http://localhost:8080/thank-you.html" name="thanks" type="hidden">
</form>

For this to work, you need to start the server with the following environment variable:

REDIRECT=true \
REDIRECT_DOMAINS="localhost,your-domain.com" \
# ... other env variables
npm start

Site name

You can provide a site name to be used in the email subject and body.

<form action="http://localhost:8080" method="post">
  <input required="" placeholder="Name" type="text">
  <input required="" placeholder="Email" name="email" type="email">
  <textarea required="" placeholder="Message" name="message"></textarea>
  <button type="submit">Send</button>
  <input value="My Site" name="site" type="hidden">
</form>

Install

Docker

You can use the docker image available on docker hub to run the serverless form server.

docker run -e EMAIL_USER="username" \
  EMAIL_PASS="********" \
  EMAIL_HOST="mail.gandi.net" \
  EMAIL_PORT=587 \
  TO="[email protected]" \
  -p 8080:8080 lexoyo/serverless-form

Local install

Clone this repository and run the following commands:

$ npm install
$ EMAIL_USER="username" \
  EMAIL_PASS="*******" \
  EMAIL_HOST="mail.gandi.net" \
  EMAIL_PORT=587 \
  TO="[email protected]" \
  npm start

Config

Here are all the environment variables you can use, check the file lib/index.js to see how the default values.

Env vardescription
MESSAGEMessage to displayed after the form submission. May contain HTML.
DISCLAIMERMessage added to the email sent to the recipient. May contain HTML.
TOEmail address(es) to send the form to (your email)
TOA json object with tokens as keys and email addresses as values. The form will be expected to have a hidden field with the name token and the value of the token. If the token is found in the object, the email will be sent to the corresponding email address(es).
HOOKURL to send the form data to as a POST request
HOOKA json object with tokens as keys and { "url": "string", "headers": { "name": "value" } } as values. The form can have an optional hidden field with the name token and the value of the token. If the token is found in the object, the form data will be sent to the corresponding URL.
FROMEmail address to use as sender address
REDIRECTIf set to true, the server will redirect to the URL provided in the thanks hidden field of the form
REDIRECT_DOMAINSComma separated list of domains for which the server will redirect to the URL provided in the thanks hidden field of the form
PORTPort to listen to for form submissions
FORMPath to the HTML file containing the example form, defaults to public/form.html
EMAIL_HOSTSMTP config: see these options here
EMAIL_PORTSMTP config: see these options here
EMAIL_USERSMTP config: see these options here
EMAIL_PASSSMTP config: see these options here
THANKS_FIELDName of the field in the form which contains the URL to redirect to after the form submission
TOKEN_FIELDName of the field in the form which contains the token
SITE_FIELDName of the field in the form which contains the site name (used in the email subject)
HONEY_FIELDName of the field in the form which is a honeypot (if filled, the form will be considered as spam)

Dependencies for Serverless Forms

Deployment Dependencies

Node JS, docker


Template Content

serverless-forms

lexoyo/serverless-forms

More templates in this category

View Template
N8N Main + Worker
Deploy and Host N8N with Inactive worker.

View Template
Postgres S3 backups
A simple NodeJS app to back up your PostgreSQL database to S3 via a cron

View Template
Prefect (Open-Source Workflow Orchestration Platform)
Prefect (ETL & Automation alternative to Airflow) Self Host [Oct ’25]