- 论坛徽章:
- 0
|
use Mail::Sender;
my $sender = new Mail::Sender {
smtp => 'smtp.yahoo.com.cn',
from => 'wjc19851102wjc@yahoo.com.cn',
auth => 'LOGIN',
authid => 'wjc19851102wjc',
authpwd => '我的密码',
on_errors => undef,
} or die "Can't create the Mail::Sender object: $Mail::Sender::Error\n";
$sender->MailFile({to =>'wjc19851102wjcwjc@yahoo.cn',
subject => 'Here is the file',
msg => "I'm sending you the list you wanted.",
file => 'mail.txt'}) or print $Mail::Sender::Error;
$sender ->Close();
#上面的代码是网上找的然后替换自己邮箱地址。虽然运行不报错,但是不能将邮件成功发送出去,望大家指点,不好意思本人很菜
[ 本帖最后由 junchen2 于 2008-9-13 22:41 编辑 ] |
|