www.sanotes.net
2010年03月10日

现在位置: 首页 > 所有 2007年05月 文章

Perl Net::SMTP

2007年05月10日 添加评论 1122次浏览

#!/usr/bin/perl
use strict;
use warnings;
use Net::SMTP;
my $from = 'finalbsd@gmail.com';
my $smtp = Net::SMTP->new('192.168.1.2',
                          Hello => 'test.example.com'...

分类:Perl | 阅读全文