免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1362 | 回复: 0
打印 上一主题 下一主题

如何用smtp.pl进行smtp验证收发邮件? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-09-21 10:14 |只看该作者 |倒序浏览
#!/usr/bin/perl -w

use Net::SMTP;
use Getopt::Long;
use MIME::Lite;

=head1 NAME

   smtp.self - mail a message via smtp

=head1 DESCRIPTION

C<smtp.self> will attempt to send a message to a given user

=head1 OPTIONS

=over 4

=item -debug

Enabe the output of dubug information

=item -help

Display this help text and quit

=item -user USERNAME

Send the message to C<USERNAME>

=head1 EXAMPLE

   demos/smtp.self  -user foo.bar

   demos/smtp.self -debug -user Graham.Barr

=back

=cut

$opt_debug = undef;
$opt_help = undef;
GetOptions(qw(debug user=s help));

exec("pod2text $0")
   if defined $opt_help;
sub chk_args
{
if (@ARGV<4) {
       print "Usage: smtp Path FileName MailUsers Content FromUser\n";
       exit(0);
               }
       $path = $ARGV[0];
       $file_name = $ARGV[1];
       $title = $ARGV[3];
       $fromlocation = $ARGV[4];
       @files = `ls $path/$file_name`;
       $array_size = $#ARGV-2;
return(1);
}

sub send_mail($$$$)
{
my ($user,$file,$name,$ntitle)=@_;
##$smtp = MIME::Lite->new(From => 'STIT 137.200.32.51.',
$smtp = MIME::Lite->new(From => $fromlocation,
                       To => "$user",
                       Subject => "$ntitle",
###                     Subject => "$file, Please Check it...",
                       Type => 'multipart/mixed'
                       );
$smtp->attach(Type     => 'TEXT',
             Path     => "$file",
             Filename => "$name",
             Disposition => 'attachment'
            );
$smtp->attach(Type => 'TEXT',
               Data => "$ntitle");

$smtp->send('smtp',"mailhost")||die "You Don't Have Mail!";
}

&chk_args;
for ($i=2;$i<=$array_size;$i++) { ##从第三个参数开始
$mail_addr = $ARGV[$i];
$p = index($mail_addr,'@'); ##是否包含"@"
if ($p>=0) {  ##包含"@",是邮件地址
    foreach $send_file (@files) {
    chomp($send_file);
    @arr = split(/\//,$send_file);
    $send_name = $arr[$#arr];
    send_mail($mail_addr,$send_file,$send_name,$title);
    } #end foreach
}
else { ##不包含"@",是文件
    open(FL,"<$mail_addr");
    while(<FL>) { ##取文件中的邮件地址
      $mail=$_;
      foreach $send_file (@files) {
        chomp($send_file);
        @arr = split(/\//,$send_file);
        $send_name = $arr[$#arr];
        send_mail($mail,$send_file,$send_name,$title);
      } #end foreach
    } #end while
    close(FL);
    close(FL);
} #end if
} #end for
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP