最近我正在使用 chilkat perl 库发送电子邮件
http://www.example-code.com/perl/smtp_simpleSend.asp
当我创建新对象时
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");
当我尝试使用 Dumper 方法打印对象时,它什么也不返回。
print Dumper($mailMan);
$VAR1 = bless( {}, 'chilkat::CkMailMan' );
我们如何将数据隐藏在上面的祝福对象中?