Email::MIME::Kit::Role::Renderer - things that render templates into contents


Email-MIME-Kit documentation Contained in the Email-MIME-Kit distribution.

Index


Code Index:

NAME

Top

Email::MIME::Kit::Role::Renderer - things that render templates into contents

VERSION

Top

version 2.102010

IMPLEMENTING

Top

This role also performs Email::MIME::Kit::Role::Component.

Classes implementing this role must provide a render method, which is expected to turn a template and arguments into rendered output. The method is used like this:

  my $output_ref = $renderer->render($input_ref, \%arg);

AUTHOR

Top

Ricardo Signes <rjbs@cpan.org>

COPYRIGHT AND LICENSE

Top


Email-MIME-Kit documentation Contained in the Email-MIME-Kit distribution.

package Email::MIME::Kit::Role::Renderer;
BEGIN {
  $Email::MIME::Kit::Role::Renderer::VERSION = '2.102010';
}
use Moose::Role;
with 'Email::MIME::Kit::Role::Component';
# ABSTRACT: things that render templates into contents


requires 'render';

no Moose::Role;
1;

__END__