| Catalyst-View-Email documentation | Contained in the Catalyst-View-Email distribution. |
Catalyst::Helper::View::Email::Template - Helper for Templated Email Views
$ script/myapp_create.pl view Email::Template Email::Template
Helper for Template-based Email Views.
J. Shirley jshirley@gmail.com
This library is free software . You can redistribute it and/or modify it under the same terms as perl itself.
[% class %] - Templated Email View for [% app %]
View for sending template-generated email from [% app %].
[% author %]
This library is free software, you can redistribute it and/or modify it under the same terms as Perl itself.
| Catalyst-View-Email documentation | Contained in the Catalyst-View-Email distribution. |
package Catalyst::Helper::View::Email::Template; use strict; our $VERSION = '0.31'; $VERSION = eval $VERSION;
sub mk_compclass { my ( $self, $helper ) = @_; my $file = $helper->{file}; $helper->render_file( 'compclass', $file ); }
1; __DATA__ __compclass__ package [% class %]; use strict; use base 'Catalyst::View::Email::Template'; __PACKAGE__->config( stash_key => 'email', template_prefix => '' );
1;