Small library for reading mail messages via POP3. Currently doesn\'t return all header fields, and does only plain text authorization.

Dependents:   mmain pop3demo

Embed: (wiki syntax)

« Back to documentation index

Pop3Message Class Reference

Pop3Message Class Reference

The class representing a received mail message. More...

#include <pop3.h>

Data Fields

string id
 the UIDL this message has on the server
string from
 the 'From:' header
string subject
 the 'Subject:' header
list< string > content
 the actual mail content, line by line

Detailed Description

The class representing a received mail message.

All fields are stored in un-altered form, so character set conversion might need to be performed.

Definition at line 37 of file pop3.h.


Field Documentation

list<string> content

the actual mail content, line by line

Definition at line 55 of file pop3.h.

string from

the 'From:' header

Definition at line 47 of file pop3.h.

string id

the UIDL this message has on the server

Definition at line 43 of file pop3.h.

string subject

the 'Subject:' header

Definition at line 51 of file pop3.h.