Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Generic Mail Form Processor

by pschoonveld (Pilgrim)
on Apr 13, 2000 at 22:55 UTC ( [id://7511]=CUFP: print w/replies, xml ) Need Help??

The following uses CGI.pm as an easy way to deal with CGI vars. Sends me email from any web form. Prints each var "paco=taco" format.

At the end it tells the browser to go to an html page.

#!/usr/bin/perl use CGI qw(:standard); @submits = param(); open(MAIL, "|/usr/sbin/sendmail -oi -t") or die "Can't Open Sendmail: +$!"; print MAIL <<EOF; From: Web Page To: patrick\@pacoswithtacos.com Subject: Web Form Submission EOF foreach $item (@submits) { print MAIL "$item=".param($item)."\n"; } close(MAIL); print "Location: ../thank_you.html\n\n";

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: CUFP [id://7511]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (None)
    As of 2024-04-25 04:00 GMT
    Sections?
    Information?
    Find Nodes?
    Leftovers?
      Voting Booth?

      No recent polls found