blob: 5e7e96d8baaa3f14a9d9ccfe3dc2ac64eb4c02d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
package CatDap::View::Email;
use strict;
use base 'Catalyst::View::Email';
__PACKAGE__->config(
stash_key => 'email'
);
=head1 NAME
CatDap::View::Email - Email View for CatDap
=head1 DESCRIPTION
View for sending email from CatDap.
=head1 AUTHOR
Buchan Milne
=head1 SEE ALSO
L<CatDap>
=head1 LICENSE
This library is free software, you can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
1;
|