Rand Stats

Net::IMAP

zef:raku-community-modules

Actions Status

Net-IMAP

An IMAP client library.

Example Usage

my $i = Net::IMAP.new(:$server);
$i.authenticate($user, $pass);
$i.select('INBOX');
my @messages = $i.search(:all);
for @messages {
    say .mime.header('subject');
}

Simple interface methods

Net::IMAP::Message methods

Raw interface methods

AUTHOR

Andrew Egeler

Source can be located at: https://github.com/raku-community-modules/Net-IMAP . Comments and Pull Requests are welcome.

COPYRIGHT AND LICENSE

Copyright 2014 - 2018 Andrew Egeler

Copyright 2019 - 2022 Raku Community

All files in this repository are licensed under the terms of Create Commons License; for details please see the LICENSE file