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