| Catalyst-View-Email documentation | Contained in the Catalyst-View-Email distribution. |
Catalyst::Helper::View::Email - Helper for Email Views
$ script/myapp_create.pl view Email Email
Helper for 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 %] - Email View for [% app %]
View for sending 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; our $VERSION = '0.31'; $VERSION = eval $VERSION; use strict;
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'; __PACKAGE__->config( stash_key => 'email' );
1;