Add Email template parts for register email sending
[scpubgit/stemmatology.git] / stemmaweb / lib / stemmaweb / View / Email / Template.pm
1 package stemmaweb::View::Email::Template;
2
3 use strict;
4 use base 'Catalyst::View::Email::Template';
5
6 __PACKAGE__->config(
7     stash_key       => 'email',
8     template_prefix => ''
9 );
10
11 =head1 NAME
12
13 stemmaweb::View::Email::Template - Templated Email View for stemmaweb
14
15 =head1 DESCRIPTION
16
17 View for sending template-generated email from stemmaweb. 
18
19 =head1 AUTHOR
20
21 A clever guy
22
23 =head1 SEE ALSO
24
25 L<stemmaweb>
26
27 =head1 LICENSE
28
29 This library is free software, you can redistribute it and/or modify
30 it under the same terms as Perl itself.
31
32 =cut
33
34 1;