PDA

View Full Version : email list management form?



safaritown
22 Dec 2009, 04:16 PM
Hello Web designers,
I was wondering what would be the best way to put a small "sign up for mailing list" form on my business web site? Not published yet, and i was wondering if I should create a new email account for this so, my reg email does not get to full or too big as it has limitations? I wanted a small form and I tried 1 site called ymlp and it gave me a html code to insert into my site but I was not able to edit the form to make it fit into my col3 150 pixels wide column? Any help greatly appreciated.

Thanks

Tony

erilidon
02 Jan 2010, 12:33 PM
a simple form that get their email address and submits it to a asp or php page to then be emailed wherever you want would suffice.



<form action="email.php" method="post">
Name:
<input type="text" name="name" />
<br />
Email:
<input type="text" name="email" />
</form>


Then just create a php script to post and send the information.