Help for this page

Select Code to Download


  1. or download this
    package PL::Mail;
    my $server = 'pop.dnvr.qwest.net';
    ...
        }; # hashref containing instance variables
        return bless $self, $class;
    }
    
  2. or download this
    my $obj = PL::Mail->new( $recipient );
    $obj->send( subject => 'blah', comments => 'ftui' ):
    
  3. or download this
    my( $self, %params) = @_;
    $self->{ subject } = $params{ subject };
    ...