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

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;

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

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

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

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.