File: Email.pm

package info (click to toggle)
libcatalyst-view-email-perl 0.36-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 308 kB
  • sloc: perl: 2,665; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 165 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
package # Hide from PAUSE
    TestApp::View::Email;


use base 'Catalyst::View::Email';

__PACKAGE__->config(
    sender => {
        mailer => 'Test'
    },
);

1;