Help for this page

Select Code to Download


  1. or download this
    get ( MSGNUM [, FH ] )
    
        Get the message MSGNUM from the remote mailbox. If FH is not given
    + then get returns a reference to an array which contains the lines of
    + text read from the server. If FH is given then the lines returned fr
    +om the server are printed to the filehandle FH.
    
  2. or download this
    my $msg = $pop->get($msgnum);
    for my $line ( @$msg ) {
    ...
            last;
        }
    }