Perl的Mail::POP3Client模块和Gmail通信实例
一、前言
最近在写一个从gmail批量下载附件的程序,用到了 Mail::POP3Client 和 MIME::Parser 2 个模块
二、相关文档
CPAN:
Mail::POP3Client模块
MIME::Parser模块
StrawberryPerl模块的安装、卸载与查看
三、实现
use Mail::POP3Client; use MIME::Parser; my $U = 'User.Name@gmail.com'; my $P = 'uSeR.pAsSwORd'; my $X = new MIME::Parser; $X -> output_dir('C:\\download'); #directory to save attachment my $G = Mail::POP3Client -> new ( USER => $U, PASSWORD => $P, HOST => 'pop.gmail.com', PORT => 995, USESSL => 'true') or die "Can't Connect The Server.\n"; for $i (1 .. $G->Count()) { my $C = $G->HeadAndBody($i); my $R = $X->parse_data($C); } $G->Close();
相关推荐
patiencezzz 2015-06-14
MisterJiaJia 2019-12-07
qonsnow 2016-08-17
83286033 2017-01-31
liboxue 2012-08-30
ElvenShi 2012-02-22
会写code的凳子哥 2016-01-16
UC浏览器搜索引擎 2019-06-21
张大晴 2011-08-03
ivgwt 2019-02-07
HipPop 2015-05-19
Ubuntu黑客 2016-10-22
tianshijianbing 2016-03-07
iFlyAI 2017-09-06
88221247 2009-03-27
ytp00ytp 2015-05-08