I need the html code for a subscription field and button?

Posted by: admin  :  Category: HTML Code

I need the html code that will create a field where my site visitor can type in their e-mail address and click submit, but I would like the information they submit to be sent to my inbox so they can subscribe to a newsletter, is this possible?

<form action="" method="post">
<input type="text" name="email" />
<input type="submit" value="submit" />
</form>

Then you need programming code to process the input(php, asp.NET, coldfusion etc.), and send it as email

One Response to “I need the html code for a subscription field and button?”

  1. Poki Says:

    <form action="" method="post">
    <input type="text" name="email" />
    <input type="submit" value="submit" />
    </form>

    Then you need programming code to process the input(php, asp.NET, coldfusion etc.), and send it as email
    References :