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

NAME

Jifty::Plugin::JapaneseNotification::Notification::ISO2022JP - Send emails from Jifty with Japanese character code

SYNOPSIS

Add the following to your site_config.yml

    framework: 
      Plugins: 
        - JapaneseNotification: {}

in your application

    use utf8;

    my $notification =
        Jifty->app_class('Notification', 'ISO2022JP')->new(
            from    => 'Pikari <pi@null.in>',
            to      => 'Keronyo <ke@null.in>',
            subject => 'Hello!',
            body    => 'FumoFumo--',
        );
    $notification->send;

METHODS

send_one_message

parts

send

AUTHOR

Tomohiro Hosaka, <bokutin at bokut.in>

COPYRIGHT & LICENSE

Copyright 2008 Tomohiro Hosaka, all rights reserved.

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