I have a simple form that I have been using for a while that I now need to add a second recipient to.
My current code is a follows: #!/usr/bin/perl use CGI param; $p = CGI::new(); $mailProgram = '/var/qmail/bin/qmail-inject'; # Email id to send the email to $emailId = '[EMAIL PROTECTED]'; print "Content-type: text/html\n\n"; # Get the form variables How can I add a second recipient to the $emailId = '[EMAIL PROTECTED]'; line? I have tried a variety of ways and can't seem to make it work. TIA, Sander