- or download this
<FORM METHOD="POST" ACTION="/cgi-bin/button.cgi">
- or download this
use strict;
use Mail::Sendmail;
use CGI;
my $cgi = new CGI;
- or download this
my $button_value = $cgi->param('m_EmailGroups');
- or download this
my %mail = (
To => 'myhomeaddress@isp.com',
...
);
sendmail(%mail) or die $Mail::Sendmail::error;