Options for Handling Form Submissions Without a Back End
1–6 of 6 posts
Re: Options for Handling Form Submissions Without a Back End
#2For startups, it is important to monitor and quickly respond to events like sign ups or form submissions. This post explains the different options to handle form submissions without managing the backend yourself.
Re: Options for Handling Form Submissions Without a Back End
#3Re: Options for Handling Form Submissions Without a Back End
#4Last time i was looking for something as simple as possible and available everywhere I cared I landed on ruby (not rails) CGI with Forms and hooked it up to whichever http server was lying around. I expect it to keep running with minimal maintenance in 20 years.
Re: Options for Handling Form Submissions Without a Back End
#5Last time i was looking for something as simple as possible and available everywhere I cared I landed on ruby (not rails) CGI with Forms and hooked it up to whichever http server was lying around. I expect it to keep running with minimal maintenance in 20 years.
That's great for most people. I wanted a little more - a notification on my phone when I got a submissions. Unfortunately setting this up is pretty annoying, and nobody else was doing it. They were only doing email and slack notifications which I didn't like as it just cluttered my inbox.
Re: Options for Handling Form Submissions Without a Back End
#6Earlier quoted context omitted.
That's great for most people. I wanted a little more - a notification on my phone when I got a submissions. Unfortunately setting this up is pretty annoying, and nobody else was doing it. They were only doing email and slack notifications which I didn't like as it just cluttered my inbox.
It's just as easy to have that CGI script call some webhook to send it to whatever push gateway, email, some chatbot, etc.
It’s not for everyone, if you want to roll your own setup that’s great. But I intentionally built this for developers to give them full flexibility while still saving them time so they can focus on more important work.