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

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;

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

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

Daisuke Murase <typester@cpan.org>

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