The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

MIME::Lite::TT::HTML::Japanese.ja - 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