perl 自動發郵件

來源:互聯網
上載者:User
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;

自動發信的賬戶和目標都配在設定檔裡,設定檔格式如下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

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.