Coder Social home page Coder Social logo

formail's Introduction

Formail

Formail allows your static websites to send forms by email, from the client-side, without exposing your SMTP credentials.
It is a self-hosted, open-source alternative to Formspree.

Install

Docker

docker run -d \
	--name formail \
	-p 8080:8080 \
	-e SECRET=<SECRET_KEY> \
	--restart unless-stopped \
	thezealot/formail

Usage

  1. Encode your configuration

    Before sending form data, you need to encrypt your form configuration using the /encrypt endpoint:

    curl https://<HOST>/encrypt?key=<SECRET_KEY> \
    		-H "Content-Type: application/json" \
    		-d '{
    			"smtpHost":"<SMTP_HOST>",
    			"smtpPort":<SMTP_PORT>,
    			"smtpUsername":"<SMTP_USER>",
    			"smtpPassword":"<SMTP_PASSWORD>",
    			"from":"<FROM_EMAIL>","to":["<TO_EMAIL>"],
    			"subject":"<SUBJECT>",
    			"fields":["<FIELD1>","<FIELD2>"]
    			}'

    The response body will contain the encrypted JSON configuration string that you will include in your static website code for future client-side requests.

  2. Send your form data

    Once you have the encrypted configuration, send your form data to the / endpoint:

    POST /
    Content-Type: application/json
    
    {
    	"config": "<ENCRYPTED_CONFIG>",
    	"fields": {
    		"name": "John Doe",
    		"email": "[email protected]",
    		"message": "This is a test message."
    	}
    }

    Formail will decrypt the configuration, match the form data to the fields, and send an email with the collected data.

formail's People

Contributors

xthezealot avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.