Mobile app version of vmapp.org
Login or Join
Rivera981

: Setting up a coming soon page. Should I create a whole database for "Sign up now for updates" email addresses? I'm helping a friend set up a "Coming Soon" page for his website. Naturally,

@Rivera981

Posted in: #Database #EmailAddress

I'm helping a friend set up a "Coming Soon" page for his website. Naturally, he wants people to enter their email addresses so they can get updates about the status of the website. I know I can set up a database for him but he's not very tech savy and won't want to learn how to check that database.

So one solution I'm thinking of doing is setting up a webpage at friendsurl.com/pEbRuw3A (or some other random string so that bots can't easily find the page) and having the emails there in a csv format. That way he can continuously check it for updates.

So, is this a stupid idea?

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Rivera981

2 Comments

Sorted by latest first Latest Oldest Best

 

@Welton855

Honestly, unless there is an incentive (10% off for registered customers, learn how we solved world-hunger, etc) for people to sign up with something yet unknown, it seems like a waste of time.

Now if the site is going to have a mailing list anyway for a good reason when it will be up and running, might as well write that part of the software first and make the Coming Soon page its UI. In that case you are not doing much extra work.

The solution you propose is called security through obscurity and is never a good idea. At the very least you can have the sign up form add a line to a private text file on the websever. This is trivial to do in PHP and I assume the same of other systems. No databases need to be involved here!

10% popularity Vote Up Vote Down


 

@Heady270

I would set up a contact form that will send an email each time somebody is interested. Unless you think you will get 10s of these a day, that shouldn't be a horrible solution. My guess is you'll be lucky to get 1 a day.

I wrote a contact form that you can use for such a purpose: ostermiller.org/contactform/ I would configure such that preview and captcha are disabled. I would create a form that asks for the email address and has a pre-canned subject and email body in hidden fields. When the interested person submits from the website, your friend gets an email from them saying "I'm interested in hearing when your website is up".

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme