Reputation: 1559
I have my site under construction, and I want to have a little form (name, email) where people can submit it to be notified when I launch my site. Much like you see on Beta invite sites etc. How would I go about that?
Upvotes: 2
Views: 126
Reputation: 6266
Have a HTML form with single email field. Name is not required and therefore should be avoided.
On database side, create a table with two fields: one to store email address and one boolean flag field (default false) to save status (if the notification is sent to this address or not). Make email address a unique field.
Two scripts:
Make a cron job entry to run the mail sender script after every T units of time.
Upvotes: 7