Hi,
I am new to PERL coding and I am stuck on my first CGI script. I am trying to make an email form work. Here is my script:
#!/usr/local/bin/perl -wT
use strict;
use CGI ':standard';
my ($to, $from, $name, $subject, $contents);
print "Content-type:text/html\n\n";
$to = param('to');
$from...