- 论坛徽章:
- 0
|
code如下,运行后没有任何反应,邮件没有发送,在公司内网环境下,牛头们帮忙诊断下啊 ,看了半天了。- #!/usr/bin/perl
- use Mail::Sender;
- my $sender = new Mail::Sender {
- smtp => 'smtp.163.com',
- from => 'f666@163.com',
- auth => 'LOGIN',
- authid => 'f666@163.com',
- authpwd => '!qaz2wsx',
- on_errors => undef,
- } or die "Can't create the Mail::Sender object: $Mail::Sender::Error\n";
- $sender->MailFile({to =>'f666@163.com',
- subject => 'Here is the file',
- msg => "I'm sending you the list you wanted.",
- file => './or.pl'}) or print $Mail::Sender::Error;
- $sender ->Close();
复制代码 |
|