The Pop3Client module provides the Pop3Client class for retrieving emails from a POP3 server, with or without TLS/SSL encryption.
To use this module, use "%requires Pop3Client"
in your code. See examples/pop3.q for an example program using this module.
All the public symbols in the module are defined in the Pop3Client namespace.
The main class is:
- Pop3Client: provides an interface to a POP3 server for retrieving emails
- Example:
#!/usr/bin/env qore -n
%requires Pop3Client
sub log(string msg) {
}
string url = "pop3s://username:pass@pop.gmail.com";
Pop3Client pop3(url, \log(), \log());
# do not send a QUIT so changes will not be committed
*
hash h = pop3.getMail();
map
printf(
"%s: From: %s (size: %d bytes, attachments: %d)\n", $1.key, $1.value.msg.getFrom(), $1.value.size, $1.getvalue.msg.getAttachments().size()), h.pairIterator();
if (!h)