加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 大数据 > 正文

perl 自动发邮件

发布时间:2020-12-16 00:11:32 所属栏目:大数据 来源:网络整理
导读:perl脚本: #!/usr/bin/perl use Net::SMTP; use MIME::Base64; ################ # 自动签到脚本 # ################ $host = '10.182.131.153'; #SMTP服务器地址 ########################### # # $host: smtp服务器 # $auth: 邮件账户 # $password: 邮件

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,index($auth,'@')),$password);
? $smtp->mail($auth);
? $smtp->to($to);
? $smtp->bcc($auth);
? $smtp->data();
? $smtp->datasend("Content-Type:text/plain;charset=GB2312n");
? $smtp->datasend("Content-Transfer-Encoding:base64n");
? $smtp->datasend("From:$auth n");
? $smtp->datasend("To:$to n");
? $smtp->datasend("Subject:=?gb2312?B?".encode_base64($mail_body,'')."?=nn");
? $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[3]); n";
}

close CONF_FILE;
close LOG_FILE;

自动发信的账户和目标都配在配置文件里,配置文件格式如下mails.conf:

#<auth> <password> <To> <mail body>
000000 签到然后就是在 crontab 里配自动运行是时间了:

#分 时 日 月 星期 命令 41 8 * * 1-5 /usr/bin/perl /home/aig/.run/checkin.pl /home/aig/.run/mails.conf 58 13 * * 1-5 /usr/bin/perl /home/aig/.run/checkin.pl /home/aig/.run/mails.conf

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读