end_document()end_section()start_para()end_para()newline()start_link($url)end_link()indent_inc()indent_dec()horizontal_line()email_address($account,$host)initialize()
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 the Mail::LMLM::Render manpage that renders HTML.
end_document()
end_section()
start_para()
end_para()
newline()
start_link($url)
end_link()
indent_inc()
indent_dec()
horizontal_line()
email_address($account,$host)
See the documentation at the Mail::LMLM::Render manpage.
initialize()Construction method. For internal use.
Shlomi Fish http://www.shlomifish.org/.