refactor of the API and mainly Catalyst::View::Email::Template
[catagits/Catalyst-View-Email.git] / t / lib / TestApp / View / Email.pm
CommitLineData
82300460 1package # Hide from PAUSE
2 TestApp::View::Email;
3
4use Email::Send::Test;
5
6use base 'Catalyst::View::Email';
7
8__PACKAGE__->config(
9 sender => {
06afcdbc 10 mailer => 'Test'
82300460 11 },
12);
13
141;