The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

MIME::Lite::TT::HTML::Japanese - Template-Toolkit によるHTMLメール作成モジュール

SYNOPSIS

    use MIME::Lite::TT::HTML::Japanese;

    my $msg = MIME::Lite::HTML::Japanese->new(
        From        => 'from@example.com',
        To          => 'to@example.com',
        Subject     => 'Subject',
        Template    => {
            html => 'mail.html',
            text => 'mail.txt',
        },
        TmplOptions => \%options,
        TmplParams  => \%params,
        Icode       => 'euc',    # input characterset (Jcode format)
    );
    
    $msg->send;

DESCRIPTION

MIME::LiteTemplate をつかって HTML メールを作成するモジュール。

METHODS

new( %options )

%option を元に MIME::Lite でメールを作成し、その MIME::Lite オブジェクトを返す。

%option のとれる値。

AUTHOR

Daisuke Murase <typester@cpan.org>

LICENSE

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

SEE ALSO

MIME::Lite, Template, MIME::Lite::TT::Japanese