faqts : Computers : Programming : Languages : PHP : Common Problems : Forms and User Input

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

121 of 125 people (97%) answered Yes
Recently 7 of 10 people (70%) answered Yes

Entry

Can I submit a HTML form to an email address?

Aug 4th, 1999 08:00
Nathan Wallace, Anand Raman, Christopher Ostmo


For some browsers:

    <form name="form_name"
          action="mailto:ur_email@address.com"
          enctype=plain/text
          method=post>
    </form>

will work.  After submitting the form u have the contents of the
form in plain simple name / value pairs.

You can find a PHP solution at:

    http://modems.rosenet.net/mysql/

Click the link to "Mail Form."