Internet Frontier has a CGI script available to customers which processes
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/*******.cgi" method=POST>
<input type=hidden name="example" value="1">
<input type=hidden name="to" value="address@wherever.com">
<input type=hidden name="from" value="someone@ifn.net">
<input type=hidden name="subject" value="email from my web page">
Your Name: <input type=text name="name" size=25>
Address: <input type=text name="street" size=25>
City: <input type=text name="city" size=25>
State: <input type=text name="state" size=3 maxlength=2>
Zip: <input type=text name="zip" size=5 maxlength=5>
<input type=submit value="Send Email">
|
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.)
|