NAME

Jifty::Plugin::JapaneseNotification - 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;

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.