Recently I am using chilkat perl library for sending email
http://www.example-code.com/perl/smtp_simpleSend.asp
when i create new object
use chilkat();
# The mailman object is used for sending and receiving email.
$mailman = new chilkat::CkMailMan();
$mailman->put_SmtpHost("smtp.chilkatsoft.com");
# Set the SMTP login/password (if required)
$mailman->put_SmtpUsername("myUsername");
$mailman->put_SmtpPassword("myPassword");
when i try to print the object using Dumper method it returns nothing.
print Dumper($mailMan);
$VAR1 = bless( {}, 'chilkat::CkMailMan' );
how can we hide the data in blessed object like above?