The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package TestApp::Notifications::Notification;
use base 'Jifty::Notification';
use strict;
use warnings;

sub subject { 'testapp-notifications' }
sub from { 'notifications@localhost' }
sub recipients { 'recipient@localhost' }

1;