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