jettero / net--imap--simple

A simple module for interacting with IMAP accounts

This URL has Read+Write access

net--imap--simple / README
100644 27 lines (17 sloc) 0.589 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
NAME
 
Net::IMAP::Simple - Perl extension for simple IMAP account handling.
 
SYNOPSIS
 
    use strict;
    use warings;
    use Net::IMAP::Simple;
 
    my $server = Net::IMAP::Simple->new( 'someserver' );
    $server->login( 'someuser', 'somepassword' );
 
    for ( 1 .. $server->select( 'somefolder' ) ) {
        print $email->header('Subject'), "\n";
    }
    $server->quit();
 
COPYRIGHT
 
All rights reserved. This program is free software; you can redistribute
it and/or modify it under the same terms as Perl itself.
 
BUGS
 
https://rt.cpan.org/Dist/Display.html?Queue=Net-IMAP-Simple