Help for this page

Select Code to Download


  1. or download this
        my ($c,$mailcc,$mailto) =(0,'','');
        
    ...
                $mailcc .= $_;
            }
        }
    
  2. or download this
        # put first element in array as mail_to and all others as CC
        my $mailto = shift @$mailref;
        my $mailcc = join '', @$mailref;