Posts: 457
Name: Randy
Location: Northern Wisconsin
|
Hello there,
To create your form you will have to research some form making. This will require some php knowledge and possibly client side validation through javascript(or jQuery, etc.) if you want those cool "instant" messages to display to a user while filling out a form. (eg. "you forgot the email address!")
Basically, you create the form in html(or php) and then send that form to a php page to validate it. By validating the form, you make sure users haven't input malicious content or forgotten to check your "terms and conditions" box, etc. There are also free form generators as well to help you create this, but you should have some knowledge of what's going on.
When the form has been validated, you can then send it to your email or have it input into a database, which ever you prefer or even both.
Once you have the emails in store, you can send them newsletters each day. If you plan on having many(hundreds or more) you'll want to consider using an email service like http://www.mailchimp.com/ or http://www.campaignmonitor.com/
These companies will help track your emails sent in a google analytics kind of way. Plus, they will keep you from being marked as a spammer from your own email service.(Very important!)
You can get help here on creating a form, but many prefer to "help" others along rather than create the entire thing. This way you learn more plus get friendly advice of those who have been through the process.
BTW - Welcome to the forum!
Last edited by racer x; 04-18-2009 at 11:57 PM..
|