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

NAME

MIME::Lite::TT::Japanese - MIME::Lite::TT with Japanese character code

SYNOPSIS

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

  my $msg = MIME::Lite::TT::Japanese->new(
              From => 'me@myhost.com',
              To => 'you@yourhost.com',
              Subject => 'Hi',
              Template => \$template,
              TmplParams => \%params, 
              TmplOptions => \%options,
              Icode => 'sjis',
              LineWidth => 72,
            );

  $msg->send();

DESCRIPTION

MIME::Lite::TT::Japanese is subclass of MIME::Lite::TT. This module helps creation of Japanese mail.

FEATURE

  • 'text/plain; charset=iso-2022-jp' is set to 'Type' of MIME::Lite option by default.

  • '7bit' is set to 'Encoding' of MIME::Lite option by default.

  • convert the subject and the from to MIME-Header documented in RFC1522.

  • convert the mail text to JIS.

  • set Japanese local-time at Date field by default.

  • auto linefeed (by default changes line per 72 bytes)

ADDITIONAL OPTIONS

Icode

Set the character code of the subject, the from and the template. 'euc', 'sjis' or 'utf8' can be set. If no value is set, this module try to guess encoding. If it is failed to guess encoding, 'euc' is assumed.

LineWidth

number of characters in which it changes line automatically.(the unit is byte. default is 72) Set 0 (zero) if you do not want to change line automatically.

AUTHOR

Author <horiuchi@vcube.com>

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

SEE ALSO

MIME::Lite::TT