Help for this page

Select Code to Download


  1. or download this
    # Open The Mail
    open (MAIL, "|$mailprog -t") || &safe_die("Can't open $mailprog!\n");
    ...
    print MAIL "------------------------------\n\n";
    print MAIL qq~ *** omitting the irrelevant body stuff *** ~
    close (MAIL);
    
  2. or download this
    $count = 0;
    foreach (@cc) {
    ...
    print MAIL qq~ *** more irrelevant HTML *** ~
    close (MAIL);
    }
    
  3. or download this
    foreach (@cc) {
    $count += 1;
    ...
    print MAIL qq~ *** more irrelevant HTML *** ~
    close (MAIL);
    }