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