in reply to Re^4: Template::Latex not interpolating variables . . .
in thread Template::Latex not interpolating variables . . .
Your loop is wrong, you have emails as your hash keys and not the uid/fname etc you're trying to access directly.
you'll have to try with an inner loop like this
[% FOREACH customer IN call_list %] [% FOREACH info IN customer.value %] [% info.uid %] [% END %] [% END %]
|
|---|