Instead of inventing Yet Another Templating Solution, you might also consider Template Toolkit. Here's something I whipped up in 5 minutes from your source. Note the alternative provided for sender email:
#!/usr/bin/perl -w use strict; $|++; use Template; my $result = Template->new ( START_TAG => '<', END_TAG => '>', )->process(\*DATA, { recp_name => 'Recipient name', send_name => 'Sender name', ## send_email => 'sender@example.com', site_url => 'http://example.com/some/place', }) || die Template->error; __END__ Hey <recp_name>, I was surfing the web and I stopped by a pretty cool site that I think + you might be interested in. It is filled with cool information, good link +s, funny pics, and more, so be sure to check it out! Here is the address of the site: <site_url>. <send_name> <IF send_email; send_email; ELSE; "[no email specified]"; END>

-- Randal L. Schwartz, Perl hacker


In reply to •Re: string substitution help by merlyn
in thread string substitution help by emilford

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.