Dear All, I have created a html web form that has checkboxes for email address to send to based on selection. If a user checked a box called Product Management, it'll should send it to productmgt@domain.com, and if they check that and another checkbox called TechSupport it should also send it to techsupport@domain.com.... I have tried to incorperate that into a very basic Perl script but have failed. I tried searching the web for any documentations on how to do this, boy was that hard, I couldn't find any...Below is an example of the code in the html form, I don't have any for perl because I'm faily new at this and don't know where to go with it.... Appriciate your help!!
<tr> <td> <font size="2"> <input type="checkbox" name="m_EmailGroups" value="Prod_Mgt ">Product +Mgt </font></td> <td> <font size="2"> <input type="checkbox" name="m_EmailGroups" value="TechSupport">Tech S +upport </font></td> </tr>

In reply to sending email based on form checkbox selection by Anonymous Monk

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.