TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: What's the simplest way to store email collected from a landing page?

2 点作者 maxwelldone将近 3 年前
I&#x27;m about to spin up a landing page to test a startup idea and would like to collect some basic details like name &amp; email from interested users.<p>Managed DBs &amp; VPS seem excessive for this simple case. What&#x27;s my best option?

4 条评论

dorongrinstein将近 3 年前
There are MANY ways to do it. You can use firebase and GCP functions. I run Control Plane and on our platform it would cost you $1.45 per month with a really fun development experience. Simply create a Docker image in any language. It can write to any DB. Dynamo would probably cost you nothing and in case you need to have a LOT of records, it would still cost near nothing. You probably want to use ReCaptcha in silent mode to avoid bots. If you want to try it out, or have me show you how to easily build this, shoot me a note to doron@controlplane.com and I&#x27;m happy to show you. Our website is at <a href="https:&#x2F;&#x2F;controlplane.com" rel="nofollow">https:&#x2F;&#x2F;controlplane.com</a>. All that said, I am sure there are even easier ways to do this, including Google docs, etc. The good thing about Control Plane is that you can write any code and have it be highly available and low latency no matter where callers are. An overkill for your use case, but you can start at near free and scale as you need to.
troydavis将近 3 年前
Embed a signup form from Mailchimp or any of a dozen competitors. <a href="https:&#x2F;&#x2F;mailchimp.com&#x2F;help&#x2F;add-a-signup-form-to-your-website&#x2F;" rel="nofollow">https:&#x2F;&#x2F;mailchimp.com&#x2F;help&#x2F;add-a-signup-form-to-your-website...</a> works fine with Mailchimp&#x27;s free plan, supports custom fields, and can be embedded in static HTML.
scottydelta将近 3 年前
Host the static website on netlify&#x2F;vercel&#x2F;cloudflare pages with a formspree.io form.<p>You get an email whenever the form is submitted.<p>I have the setup running on my personal website. Easiest way without hosting or spinning up server.
Rackedup将近 3 年前
Self-hosted PgSQL?<p>Or even SQLite maybe but concurrent writes might become an issue if you get lots of traffic...