How To Send Email With Perl, Part II
By Will Bontrager2004-06-09
An Example Auto-responder's Web Page Form
<form method="POST" action="/cgi-bin/part2.cgi">
<input type="hidden" name="thankyoupage"
value="http://domain.com/thankyou.html">
<input type="hidden" name="required"
value="firstname, email">
First Name:
<input type="text" name="firstname">
<br>
Email:
<input type="text" name="email">
<br>
<input type="radio" name="html" value="yes">HTML
<input type="radio" name="html" value="no">plain text
<br>
<input type="submit">
</form>
Tutorial Pages:
» How To Send Email With Perl, Part II
» Overview
» 1. Form Field Values
» 2. Checking For Required Fields
» 3. Sending the Email
» 4. The ThankYou Page
» An Example Auto-responder's Web Page Form
» Still To Come
Copyright 2004 Bontrager Connection, LLC
| Related Tutorials: » Random subroutines in Perl » Log Script Use » Creating Perl Modules for Web Sites » Bit Vector, Using Perl Vec » Build a Perl/CGI Voting System » Perl Range Operator |
