首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > perl python >

perl 邮件发送示范详解

2013-09-28 
perl 邮件发送示例详解一、使用 Mail::Sender模块先申请一个163的邮箱#!/usr/bin/perluse warningsuse st

perl 邮件发送示例详解
一、使用 Mail::Sender模块
先申请一个163的邮箱;

#!/usr/bin/perl

use warnings;
use strict;
use Mail::Sender;
?
my $sender = new Mail::Sender
{
  smtp    => 'smtp.163.com',
  from    => 'your_mail@163.com",
  auth    => "LOGIN",
  authid  => "yourmail",
  authpwd => "your_mail_password"
} or die "error";


my $message = "hello , give you some message";


if($sender-> MailMsg ({
             to      => 'want_to@gmail.com',
             subject => "test" ,
             msg     =>  $message, })<0)
{
  die "$Mail::Sender::Error/n";
}
$sender->Close();


二、使用Net::SMTP_auth

#!/usr/bin/perl

use warnings;
use strict;?
use Net::SMTP_auth;
?
&send_mail();
print "send mail over\n";


# mail_user should be your_mail@163.com
sub send_mail{
  my $to_address  = 'want_to@gmail.com';
  my $mail_user   = 'your_mail@163.com';
  my $mail_pwd    = 'your_mail_password';
  my $mail_server = 'smtp.163.com';


  my $from    = "From: $mail_user\n";
  my $subject = "Subject: here comes the subject\n";


  my $message = <<CONTENT; 
  **********************
    here comes the content
    **********************
CONTENT


  my $smtp = Net::SMTP->new($mail_server,
                            Timeout =>120,
                            Debug   =>1) or die "ERROR! $!";
  $smtp->auth('LOGIN', $mail_user, $mail_pwd) || die "Auth Error! $!";
  $smtp->mail($mail_user);
  $smtp->to($to_address);


  $smtp->data();             # begin the data
  $smtp->datasend($from);    # set user
  $smtp->datasend($subject); # set subject
  $smtp->datasend($message); # set content
  $smtp->dataend();


  $smtp->quit();

热点排行