PERL Net::SMTP
#!/usr/bin/perl -w use strict; use Net::SMTP; my $to = ‘toMail‘; my $from = ‘fromMail‘; my $site = ‘mail.126.com‘; my $smtp_host = ‘smtp.126.com‘; my $pop_host = ‘pop3.126.com‘; my $username = "userName"; my $password = "password"; &writeAMesg; sub writeAMesg{ my $smtp = Net::SMTP->new( $smtp_host, Timeout=>60, Debug=>1 ); $smtp->auth($username, $password); $smtp->mail( $from ); $smtp->to( $to ); $smtp->data(); $smtp->datasend("To: $to\n"); $smtp->datasend("Subject: A message from server\n"); $smtp->datasend("\n"); $smtp->datasend("This is just to let you know\n"); $smtp->datasend("The flight is coming, Please check it out on time.\n"); $smtp->datasend("\n"); $smtp->dataend(); $smtp->quit; }
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。