perl发送邮件脚本

#!/usr/bin/perl
use Net::SMTP;
use MIME::Base64;

################
# 自动签到脚本 #
################


$host = '10.182.131.153'; #SMTP服务器地址

###########################
#
# $host: smtp服务器
# $auth: 邮件账户
# $password: 邮件账户密码
# $to: 要发送的目标
# $mail_body: 邮件内容
#
###########################


sub send_mail {
 
my($host, $auth, $password, $to, $mail_body) = @_;
 
my $smtp = Net::SMTP->new(
    Host   
=>  $host,
    Hello  
=>  $host,
    Timeout
=>  30,
    Debug  
=>  1
  );

 
$smtp->auth(substr($auth, 0, index($auth, '@')), $password);
 
$smtp->mail($auth);
 
$smtp->to($to);
 
$smtp->bcc($auth);
 
$smtp->data();
 
$smtp->datasend("Content-Type:text/plain;charset=GB2312\n");
 
$smtp->datasend("Content-Transfer-Encoding:base64\n");
 
$smtp->datasend("From:$auth \n");
 
$smtp->datasend("To:$to \n");
 
$smtp->datasend("Subject:=?gb2312?B?".encode_base64($mail_body,'')."?=\n\n");
 
$smtp->datasend("\n");

 
$smtp->datasend(encode_base64($mail_body,'')." \n");
 
$smtp->dataend();
 
$smtp->quit;
}

#获取命令行参数
if(@ARGV < 1) {
 
$conf_file = './mailusers.conf'; #默认配置文件
}
else {
 
$conf_file = $ARGV[0]; #获取配置文件名
}

#打开配置文件和日志文件
open CONF_FILE, $conf_file or die "Open config file [$conf_file] failed! \n";
open LOG_FILE, '>>send.log' or die "Open send.log failed! $!\n";
while(<LOG_FILE>) {
 
chomp;
 
if($_ =~ /^#+/) {
    next; #跳过注释行
  }

@line = split /\s+/, $_;
if(@line != 4) {
 
next; #跳过空行
}

#发送邮件
send_mail($host, $line[0], $line[1], $line[2], $line[3]);
print LOG_FILE "[" . localtime() . "] send_mail($host, $line[0], $line[1], $line[2], $line[3]); \n";
}

close CONF_FILE;
close LOG_FILE;

 

 

 

 

 

use strict;
use Mail::Sender;

my $sender = new Mail::Sender{smtp => 'smtp.163.com', from => 'myname_1@163.com'};

$sender->OpenMultipart({to => 'myname_2@gmail.com',
                        subject => 'Send Attachment!',
                        auth => 'LOGIN',
                        authid => 'myname_1',
                        authpwd => 'mypasswd_1',});

$sender->Attach(
  {description => 'Perl module Mail::Sender.pm',
   ctype => 'application/x-zip-encoded',
   encoding => 'Base64',
   disposition => 'attachment; filename="111.rar"; type="ZIP archive"',
   file => '111.rar'
  });

$sender->Close;   


#### The following is to send just a text mail ####
# if ($sender->MailMsg({
#    smtp => 'smtp.163.com',
#    from => 'myname_1@163.com',
#    to =>'myname_2@gmail.com',
#    subject => 'Test Attachment',
#    msg => "Hi, Attachment!",
#    auth => 'LOGIN',
#    authid => 'myname_1',
#    authpwd => 'mypasswd_1',
#  }) < 0) {
#   die "$Mail::Sender::Error\n";
#  }

print "Mail sent OK.";

1;

 

 

 

 

 

use strict;
use Mail::Sender;

my $sender = new Mail::Sender{smtp => 'smtp.163.com', from => 'myname_1@163.com'};

$sender->OpenMultipart({to => 'myname_2@gmail.com',
                        subject => 'Send Attachment!',
                        auth => 'LOGIN',
                        authid => 'myname_1',
                        authpwd => 'mypasswd_1',});

$sender->Attach(
  {description => 'Perl module Mail::Sender.pm',
   ctype => 'application/x-zip-encoded',
   encoding => 'Base64',
   disposition => 'attachment; filename="111.rar"; type="ZIP archive"',
   file => '111.rar'
  });

$sender->Close;   


#### The following is to send just a text mail ####
# if ($sender->MailMsg({
#    smtp => 'smtp.163.com',
#    from => 'myname_1@163.com',
#    to =>'myname_2@gmail.com',
#    subject => 'Test Attachment',
#    msg => "Hi, Attachment!",
#    auth => 'LOGIN',
#    authid => 'myname_1',
#    authpwd => 'mypasswd_1',
#  }) < 0) {
#   die "$Mail::Sender::Error\n";
#  }

print "Mail sent OK.";

1;

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值