MIME::Lite::TT::HTML::Japanese - Create html mail with MIME::Lite and TT


MIME-Lite-TT-HTML-Japanese documentation  | view source Contained in the MIME-Lite-TT-HTML-Japanese distribution.

Index


NAME

Top

MIME::Lite::TT::HTML::Japanese - Create html mail with MIME::Lite and TT

SYNOPSIS

Top

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

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

    $msg->send;

DESCRIPTION

Top

This module provide easy interface to make MIME::Lite object with html formatted mail.

METHODS

Top

new

return MIME::Lite object with Japanese html mail format.

encode_subject

encode_body

generate_text

remove_utf8_flag

SEE ALSO

Top

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

AUTHOR

Top

Daisuke Murase <typester@cpan.org>

LICENSE

Top

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


MIME-Lite-TT-HTML-Japanese documentation  | view source Contained in the MIME-Lite-TT-HTML-Japanese distribution.