
Mail::LMLM::Render::HTML - backend for rendering HTML.

use Mail::LMLM::Render::HTML;
open O, ">out.html";
my $r = Mail::LMLM::Render::HTML->new(\*O);
$r->start_document("My Document", "Head Title");
$r->start_section("Google", { 'title_url' => "http://www.google.com/", });
$r->para("Google is a very nice search engine.");
$r->end_section();
$r->end_document();
close(O);

This is a derived class of Mail::LMLM::Render that renders HTML.

See the documentation at Mail::LMLM::Render.
Construction method. For internal use.

Shlomi Fish http://www.shlomifish.org/.