Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Configuration Files and Template::Toolkit2

by Skeeve (Parson)
on Jun 04, 2012 at 05:37 UTC ( [id://974233]=perlmeditation: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    [%-
    Mail.from=    'my.sender@ddress';
    ...
             ];
    %]
    here the body comes
    
  2. or download this
        my $vars= {
            Mail   => {},
    ...
        $tt->process( $template, $vars, \$output) or die $tt->error();
        # Here I now have:
        # $vars->{'Mail'}->{'subject'} etc.
    
  3. or download this
    [%-
    # (String) Name of the main report file
    ...
        'Ijon Tichy'     => 'Ijon.Tichy@my.do.main',
    };
    %]
    
  4. or download this
    my $config_file= 'sendreport.conf';
    my $config= {
    ...
        Files => {},
    };
    $tt->process($config_file, $config) or die $tt->error();
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlmeditation [id://974233]
Approved by ww
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (4)
As of 2024-04-25 15:30 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found