|
Internet Frontier has a CGI script available to customers that processes
the data from a webpage form and emails it to you.
The required form fields are to, from, and subject
and are case-sensitive. You may include as many other fields in
your form as you need.
Here is an example of how it can be referenced on your web page:
<form   action="/cgi-bin/genemail.cgi"   method=POST> <input   type=hidden   name="to"   value="my_email_address@wherever.com"> <input   type=hidden   name="subject"   value="email from my web page"> Email Address:   <input   type=text   name="from"> <input   type=submit   value="Send Email"> </form> Here is the form with the script in action. (This one won't actually send any email - it will only show you what the email may look like.) |
