File: Template.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 (15 lines) | stat: -rw-r--r-- 247 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package # Hide me
    TestApp::View::Email::Template;

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

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

1;