Lines Matching refs:recipient
630 $recipient = 'King';
631 $text = $template->fill_in(); # Replaces `{$recipient}' with `King'
634 $T::recipient = 'Josh';
638 $hash = { recipient => 'Abed-Nego',
644 # $recipient is Abed-Nego,
667 Dear {$recipient},
1121 recipient => "The King",
1128 C<$recipient> and the list of items as the value of C<@items>. Note
1530 my $recipient = 'The King';
1534 Because C<$recipient> is a C<my> variable, and the whole point of
1537 scope, so the template can't see C<$recipient>.
1544 $Q::recipient = $recipient;
1549 my $text = fill_in_file('formletter.tmpl', HASH => { recipient => $recipient });
1853 If it didn't do that, you wouldn't be able to write C<{$recipient}>
1854 and have the recipient filled in.