@@ -, +, @@ some template toolkit markup. Example: Edit the 'CHECKOUT' notice to include [% today %] in the title field. a user (Preferably with 'email' selected in their advanced messaging preferences for the notice) message queue and inspect the subject line of the recieved email. '[% today %]'. --- C4/Letters.pm | 9 +++++++++ 1 file changed, 9 insertions(+) --- a/C4/Letters.pm +++ a/C4/Letters.pm @@ -707,6 +707,15 @@ sub GetPreparedLetter { } ); + $letter->{title} = _process_tt( + { + content => $letter->{title}, + tables => $tables, + loops => $loops, + substitute => $substitute, + } + ); + $letter->{content} =~ s/<<\S*>>//go; #remove any stragglers return $letter; --