mail::Header::list.3x

Langue: en

Autres versions - même langue

Version: 11/28/2008 (fedora - 01/12/10)

Section: 3 (Bibliothèques de fonctions)

NAME

mail::Header::list - Create a list of headers.

SYNOPSIS

 #include <libmail/headers.H>
 
 mail::Header::list headers;
 
     headers << mail::Header::encoded("Subject", "Hello", "iso-8859-1")
             << mail::header::addresslist("To")
                                         ("John", "john@example.com")
                                         ("Tom", "tom@example.com")
             << mail::Header::mime("Content-Type", "text/plain")
                                  ("charset", "iso-8859-1");
 
 std::cout << (std::string)headers;
 
 

USAGE

This is a helper class for formatting a list of headers. Each header is specified, using the << operator, which can take any combination of mail::Header::addresslist(3x), mail::Header::encoded(3x), mail::Header::mime(3x), or mail::Header::plain(3x).


Note

The << operator makes an internal copy of the header object. The original object may be destroyed after the operator returns.

The std::string operator formats all headers, and returns the set of E-mail headers as a single string. Long headers are folded accordingly.

SEE ALSO

mail::Header::addresslist(3x), mail::Header::encoded(3x), mail::Header::mime(3x), mail::Header::plain(3x).