how to create a contact form and mail it to my inbox in HTML?
i have written a HTML code to fill up a Form and mail the info to my E-mail address but when I execute this I did'nt get any email! I'm a NOOB!!!!!!!! <form id="contact_form" action="mailto:srtramganesh82@gmail.com" method="POST" > <div> <label for="name">Your name:</label><br /> <input id="name" class="input" name="name" type="text" value="" size="30" /><br /> </div> <div> <label for="email">Your email:</label><br /> <input id="email" class="input" name="email" type="text" value="" size="30" /><br /> </div> <div> <label for="message">Your message:</label><br /> <textarea id="message" class="input" name="message" rows="7" cols="30"></textarea><br /> </div> <input id="submit_button" type="submit" value="Send email" /> </form>