2 replies
  • WEB DESIGN
  • |
I'm working on a website and am flustred with the form.

How do I code it so that it will "send" to my e-mail?

I want:

Name: blah blah blah
Address: 12345 ThatStreet
City: ThatTown
State: NW
Phone: (999) 999-9999
E-mail: esend@site.com
Comment: blah blah blah blah blah blah blah blah blah blah

but I have no clue how to get the silly thing to do this?

HELP!!!!!!!

dot
#code #email #send
  • Profile picture of the author pavondunbar
    MailMyForm.com will do that for you...

    It's free, but...

    You have to code the form yourself...

    So if you want the following...

    Name: blah blah blah
    Address: 12345 ThatStreet
    City: ThatTown
    State: NW
    Phone: (999) 999-9999
    E-mail: esend@site.com
    Comment: blah blah blah blah blah blah blah blah blah blah

    You would have to type in the HTML form code for it...

    Then copy and paste that code into mailmyform.com and it'll work just fine...

    Here's a simple form code you can use that addresses what you want...

    Modify it and cater it to your liking...

    <form action="/html/tags/html_form_tag_action.cfm" method="get">
    <table>
    <tr>
    <td>Name:</td>
    <td>
    <input type="text" name="name" value="" maxlength="100" />
    </td>
    </tr>
    <tr>
    <td>Address:</td>
    <td>
    <input type="text" name="address" value="" maxlength="100" />
    </td>
    </tr>
    <tr>
    <td>City:</td>
    <td>
    <input type="text" name="city" value="" maxlength="100" />
    </td>
    </tr>
    <tr>
    <td>State:</td>
    <td>
    <input type="text" name="state" value="" maxlength="100" />
    </td>
    </tr>
    <tr>
    <td>Zip Code:</td>
    <td>
    <input type="text" name="zipcode" value="" maxlength="100" />
    </td>
    </tr>
    <tr>
    <td>Phone:</td>
    <td>
    <input type="text" name="phone" value="" maxlength="100" />
    </td>
    </tr>
    <tr>
    <td>Email:</td>
    <td>
    <input type="text" name="email" value="" maxlength="100" />
    </td>
    </tr>
    <tr>
    <td>Comments:</td>
    <td>
    <textarea rows="10" cols="60"></textarea>
    </td>
    </tr>
    <tr><td> </td>
    <td>
    <input type="submit" value="Blast Off, Warrior Forum Member!" />
    </td>
    </tr>
    </table>
    </form>

    Copy the form above, paste in Notepad, and save it as something.html in Notepad.

    Open the .html file and see how it looks...

    It's very basic...

    You can customize it the way you like....

    Hope this helps...

    Pavon
    {{ DiscussionBoard.errors[467311].message }}
  • Profile picture of the author acreativetouch
    Thank you!

    dorothy
    Signature

    Dorothy Carlson
    Phoenix Natural Health

    {{ DiscussionBoard.errors[468182].message }}

Trending Topics