Need to create contact form, saving outputs to a file

Soldato
Joined
4 Mar 2004
Posts
3,019
Location
Hemel Hempstead, Herts, U
Hi guys,

I am in the process of building a website (using wordpress and a paid for theme). Anyway, what I need for now is a kind of holding page for my domain which offers potential customers the chance to register there interest by submitting there name and email address.

I have knocked up a simple html/php form which does this but what I would really like is each completed form to be output into a simple file so that in future I can send an email to all these people to announce when the website is fully operational.

Can anyone point me in the right direction?

:)
 
Using File Append, make it so all e-mails get put into a separate line in a text file, search fwrite, fopen as well. For when you want to send a mass email create a form for you to enter what you want to send to everyone, a simple textarea and submit button should suffice, and then make a function which will loop through each email in the text file and send it to them using the mail function.

Thanks :D
 
Back
Top Bottom