Perl批量下载Gmail附件的代码

最近在写一个从gmail批量下载附件的程序,用到了 Mail::POP3Client 和 MIME::Parser 2 个模块

实现代码:
复制代码 代码如下:
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();

共计人评分,平均

到目前为止还没有投票!成为第一位评论此文章。

(0)
扎眼的阳光的头像扎眼的阳光普通用户
上一篇 2023年12月28日
下一篇 2023年12月28日

相关推荐

此站出售,如需请站内私信或者邮箱!